mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
MPL per-file was used in older project files, but should apply to the whole project, so having it there was redundant.
51 lines
1.4 KiB
C#
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");
|
|
}
|
|
}
|
|
}
|
|
}
|