Даниил Соколов-Рудаков 9f6c1f5135 HiveMind PoC + P1, P3 fixes
2025-02-16 20:15:22 +00:00

13 lines
311 B
C#

using DevOpsProject.Shared.Enums;
namespace DevOpsProject.Shared.Models
{
public class MoveHiveMindCommand
{
public State CommandType { get; set; }
// TODO: CLARIFY CommandPayload
public Location Location { get; set; }
public DateTime Timestamp { get; set; }
}
}