mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-16 15:21:21 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
19 lines
430 B
C#
Executable file
19 lines
430 B
C#
Executable file
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
|
|
}
|
|
}
|