mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 01:42:24 +00:00
20 lines
430 B
C#
20 lines
430 B
C#
|
namespace FSO.Server.Database.DA.Elections
|
|||
|
{
|
|||
|
public class DbElectionCandidate
|
|||
|
{
|
|||
|
public uint election_cycle_id { get; set; }
|
|||
|
public uint candidate_avatar_id { get; set; }
|
|||
|
public string comment { get; set; }
|
|||
|
public DbCandidateState state { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public enum DbCandidateState
|
|||
|
{
|
|||
|
informed,
|
|||
|
running,
|
|||
|
disqualified,
|
|||
|
lost,
|
|||
|
won
|
|||
|
}
|
|||
|
}
|