1
0
mirror of synced 2025-01-19 06:27:25 +01:00

25 lines
600 B
C#
Raw Normal View History

2023-02-16 16:53:02 +08:00
namespace Application.Dto;
2023-02-14 00:38:19 +08:00
public class TitleDto
{
[XmlAttribute(AttributeName = "id")]
public int Id { get; set; }
[XmlElement(ElementName = "card_id")]
public long CardId { get; set; }
[XmlElement(ElementName = "title_id")]
public int TitleId { get; set; }
[XmlElement("created")]
public string Created { get; set; } = string.Empty;
[XmlElement("modified")]
public string Modified { get; set; } = string.Empty;
[XmlElement("new_flag")]
public int NewFlag { get; set; }
[XmlElement("use_flag")]
public int UseFlag { get; set; }
}