1
0
mirror of synced 2024-12-20 10:15:53 +01:00
GC-local-server-rewrite/Application/Dto/CardBDatumDto.cs

13 lines
328 B
C#
Raw Normal View History

2023-02-16 09:53:02 +01:00
namespace Application.Dto;
2023-02-13 17:38:19 +01:00
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; }
}