namespace MultiversalDiplomacy.Model; /// /// A list of unit orders submitted by a power. /// public class OrderSet { /// /// The raw text of the submitted orders, including the name of the submitting power. /// public string Text { get; } /// /// Whether the order set has already been adjudicated. /// public bool Adjudicated { get; } /// /// UTC timestamp at which the order set was submitted /// public DateTime SubmittedAt { get; } public OrderSet(string text) { Text = text; SubmittedAt = DateTime.UtcNow; } }