9 lines
250 B
C#
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;
|
|
}
|