mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-24 10:19:10 +00:00
10 lines
248 B
C#
10 lines
248 B
C#
|
namespace FSO.Server.Database.DA.Elections
|
|||
|
{
|
|||
|
public class DbElectionCycleMail
|
|||
|
{
|
|||
|
public uint avatar_id { get; set; }
|
|||
|
public uint cycle_id { get; set; }
|
|||
|
public DbElectionCycleState cycle_state { get; set; }
|
|||
|
}
|
|||
|
}
|