RobotNet/RobotNet.Script.Shares/InstanceMissionDto.cs
2025-10-15 15:15:53 +07:00

12 lines
335 B
C#

namespace RobotNet.Script.Shares;
public class InstanceMissionDto
{
public Guid Id { get; set; }
public string MissionName { get; set; } = "";
public string Parameters { get; set; } = "{}";
public DateTime CreatedAt { get; set; }
public MissionStatus Status { get; set; }
public string? Log { get; set; }
}