1
0
mirror of synced 2024-12-12 14:31:07 +01:00
GC-local-server-rewrite/Application/Dto/SessionDto.cs

21 lines
558 B
C#
Raw Normal View History

2023-02-09 16:19:14 +01:00
using System.Xml.Serialization;
namespace Application.Dto;
public class SessionDto
{
[XmlElement(ElementName = "card_id")]
public long CardId { get; set; }
[XmlElement(ElementName = "mac_addr")]
public string Mac { get; set; } = "000000000000";
[XmlElement(ElementName = "session_id")]
public string SessionId { get; set; } = "12345678901234567890123456789012";
[XmlElement(ElementName = "expires")]
public int Expires { get; set; }
[XmlElement(ElementName = "player_id")]
public int PlayerId { get; set; }
}