namespace SVSim.Database.Models; /// /// One of the 2 pick-sets offered to the player on the current draft turn. Persisted as /// part of . is the /// monotonic counter the client sends back as selected_id on /card_choose. /// public class CandidatePair { public long Id { get; set; } public int Turn { get; set; } public int SetNum { get; set; } public long CardId1 { get; set; } public long CardId2 { get; set; } public bool IsSelected { get; set; } }