using Newtonsoft.Json;
namespace NewPdaSqlServer.Dto.Simple;
///
/// ×Ӳ˵¥Ïî - Ê÷ÐνṹµÄ×Ó½Úµã
///
public class ChildrenDto
{
///
/// ×Ӳ˵¥ID
///
[JsonProperty("id")]
public long Id { get; set; }
///
/// ×Ӳ˵¥Ãû³Æ
///
[JsonProperty("title")]
public string? Title { get; set; }
///
/// Ó¢Îıêʶ
///
[JsonProperty("field")]
public string? Field { get; set; }
///
/// Ìø×ªÁ´½Ó
/// Èç¹ûֵΪ"ÂÖ²¥"£¬Ôò×Ô¶¯Éú³Ébi_view.htmlÁ´½Ó
/// ·ñÔòʹÓÃÊý¾Ý¿âÖÐÅäÖõÄÔʼhref
///
[JsonProperty("href")]
public string? Href { get; set; }
}