using MessagePack; namespace SVSim.EmulatedEntrypoint.Models.Dtos; /// /// An indication that a specific card has had it's red ether amounts overriden from the normal amounts. /// [MessagePackObject] public class RedEtherOverride { /// /// The id of the affected card. /// [Key("card_id")] public ulong CardId { get; set; } /// /// How much red ether is now provided from dusting the card. /// [Key("get_red_ether")] public int GetRedEther { get; set; } /// /// How much red ether is now required to craft the card. /// [Key("use_red_ether")] public int UseRedEther { get; set; } }