Innovenergy_trunk/csharp/App/SodiStoreMax/src/System/StateMachine.cs

9 lines
329 B
C#

namespace InnovEnergy.App.SodiStoreMax.System;
public record StateMachine
{
public required String Message { get; set; } // TODO: init only
public required Int32 State { get; set; } // TODO: init only
public static StateMachine Default { get; } = new StateMachine { State = 100, Message = "Unknown State" };
}