freeso/TSOClient/FSO.Server.DataService/Model/ElectionCycle.cs
riperiperi b57ebbd141 Cleanup: Remove most unused usings and MPL per-file licenses
MPL per-file was used in older project files, but should apply to the whole project, so having it there was redundant.
2023-11-25 03:45:29 +00:00

51 lines
1.4 KiB
C#

using FSO.Common.DataService.Framework;
namespace FSO.Common.DataService.Model
{
public class ElectionCycle : AbstractModel
{
private uint _ElectionCycle_StartDate;
public uint ElectionCycle_StartDate
{
get { return _ElectionCycle_StartDate; }
set
{
_ElectionCycle_StartDate = value;
NotifyPropertyChanged("ElectionCycle_StartDate");
}
}
private uint _ElectionCycle_EndDate;
public uint ElectionCycle_EndDate
{
get { return _ElectionCycle_EndDate; }
set
{
_ElectionCycle_EndDate = value;
NotifyPropertyChanged("ElectionCycle_EndDate");
}
}
private byte _ElectionCycle_CurrentState;
public byte ElectionCycle_CurrentState
{
get { return _ElectionCycle_CurrentState; }
set
{
_ElectionCycle_CurrentState = value;
NotifyPropertyChanged("ElectionCycle_CurrentState");
}
}
private byte _ElectionCycle_ElectionType;
public byte ElectionCycle_ElectionType
{
get { return _ElectionCycle_ElectionType; }
set
{
_ElectionCycle_ElectionType = value;
NotifyPropertyChanged("ElectionCycle_ElectionType");
}
}
}
}