using MessagePack; using OECS; namespace Game.Blackjack; /// /// Relationship from a card entity to the deck entity, /// representing that the card is in the deck. /// [MessagePackObject] public record struct InDeck : IRelationship { [Key(0)] public Entity Target { get; set; } }