mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-24 02:09:14 +00:00
10 lines
218 B
C#
10 lines
218 B
C#
|
namespace FSO.Server.Database.DA.LotAdmit
|
|||
|
{
|
|||
|
public class DbLotAdmit
|
|||
|
{
|
|||
|
public int lot_id { get; set; }
|
|||
|
public uint avatar_id { get; set; }
|
|||
|
public byte admit_type { get; set; }
|
|||
|
}
|
|||
|
}
|