8 lines
209 B
C#
8 lines
209 B
C#
using RobotApp.Common.Shares.Enums;
|
|
|
|
namespace RobotApp.Services.State;
|
|
|
|
public class PlanState<T>(PlanStateType state, IRobotState? superState = null) : RobotState<T>(state, superState) where T : Enum
|
|
{
|
|
}
|