12 lines
329 B
C#
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; } = [];
|
|
}
|