RobotNet/RobotNet.RobotShares/OpenACS/TrafficACSRequestModel.cs
2025-10-15 15:15:53 +07:00

9 lines
250 B
C#

namespace RobotNet.RobotShares.OpenACS;
public class TrafficACSRequestModel
{
public string RobotId { get; set; } = "";
public string ZoneId { get; set; } = "";
public TrafficRequestType Type { get; set; } = TrafficRequestType.OUT;
}