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