using System.ComponentModel.DataAnnotations.Schema; namespace SVSim.Database.Models; /// /// Curated WindFall (limited-pool wildcard) deck for Arena Colosseum. See /// for the rationale on the duplicated schema. /// public class ColosseumWindFallDeck : IColosseumCuratedDeck { public long Id { get; set; } public int DeckNo { get; set; } public int ClassId { get; set; } [Column(TypeName = "jsonb")] public string CardListJson { get; set; } = "[]"; public long SleeveId { get; set; } public long LeaderSkinId { get; set; } public int DisplayOrder { get; set; } }