RobotApp/RobotApp/Services/State/PlanState.cs
Đăng Nguyễn b2df5b22b7 update
2025-10-13 13:17:32 +07:00

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
{
}