1
0
mirror of synced 2024-11-24 06:20:12 +01:00
GC-local-server-rewrite/Application/Dto/Game/SkinDto.cs
2023-02-17 00:38:01 +08:00

25 lines
602 B
C#

namespace Application.Dto.Game;
public class SkinDto
{
[XmlAttribute(AttributeName = "id")]
public int Id { get; set; }
[XmlElement(ElementName = "card_id")]
public long CardId { get; set; }
[XmlElement(ElementName = "skin_id")]
public int SkinId { 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; }
}