using System.Text.Json.Serialization; using MessagePack; namespace SVSim.EmulatedEntrypoint.Models.Dtos.ArenaColosseum; /// /// Nested under colosseum_info.sales_period_info. Captured prod shape — single /// sales_period_time field carrying the wall-clock end of the cup's sales window. /// Format "yyyy-MM-dd HH:mm:ss" (PHP convention, not ISO). /// [MessagePackObject] public sealed class ColosseumSalesPeriodInfo { [JsonPropertyName("sales_period_time")] [Key("sales_period_time")] public string SalesPeriodTime { get; set; } = string.Empty; }