1
0
mirror of synced 2024-12-01 01:07:18 +01:00
GC-local-server-rewrite/Application/Dto/Game/CardBDatumDto.cs
2023-02-17 00:38:01 +08:00

13 lines
333 B
C#

namespace Application.Dto.Game;
public class CardBDatumDto
{
[XmlElement(ElementName = "card_id")]
public long CardId { get; set; }
[XmlElement(ElementName = "bdata")]
public string CardBdata { get; set; } = string.Empty;
[XmlElement(ElementName = "bdata_size")]
public int BDataSize { get; set; }
}