RobotNet/RobotNet.RobotShares/Dtos/RobotOrderDto.cs
2025-10-15 15:15:53 +07:00

12 lines
329 B
C#

namespace RobotNet.RobotShares.Dtos;
public class RobotOrderDto
{
public string OrderId { get; set; } = "";
public bool IsError { get; set; }
public bool IsCompleted { get; set; }
public bool IsProcessing { get; set; }
public bool IsCanceled { get; set; }
public string[] Errors { get; set; } = [];
}