namespace InnovEnergy.App.SaliMax.Controller;
public struct SaliMaxState
{
private Int32 State { get; }
public SaliMaxState(Int32 state)
if (state < 1 || state >24)
throw new ArgumentOutOfRangeException(nameof(state));
State = state;
}