pcut_uwp/PCUT/PCUT.Entities/Banner.cs

21 lines
380 B
C#
Raw Permalink Normal View History

2025-01-09 02:02:40 +00:00
using Newtonsoft.Json;
using System;
2025-01-08 13:14:50 +00:00
using System.Collections.Generic;
using System.Text;
namespace PCUT.Entities
{
public class Banner
{
2025-01-09 02:02:40 +00:00
[JsonProperty("_id")]
2025-01-08 13:14:50 +00:00
public string Id { get; set; }
2025-01-09 02:02:40 +00:00
[JsonProperty("name")]
2025-01-08 13:14:50 +00:00
public string Name { get; set; }
2025-01-09 02:02:40 +00:00
[JsonProperty("content")]
2025-01-08 13:14:50 +00:00
public string Content { get; set; }
}
}