mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-21 09:11:20 +00:00
12 lines
298 B
C#
12 lines
298 B
C#
|
namespace FSO.Server.Database.DA.Shards
|
|||
|
{
|
|||
|
public class ShardTicket
|
|||
|
{
|
|||
|
public string ticket_id { get; set; }
|
|||
|
public uint user_id { get; set; }
|
|||
|
public uint date { get; set; }
|
|||
|
public string ip { get; set; }
|
|||
|
public uint avatar_id { get; set; }
|
|||
|
}
|
|||
|
}
|