using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
///
/// A card in a user's collection and the number possessed.
///
[MessagePackObject]
public class UserCard : CardIdentifier
{
///
/// The number of the specified card the user has.
///
[Key("number")]
public int Count { get; set; }
///
/// Whether the card is protected from dusting.
///
[Key("is_protected")]
public int IsProtected { get; set; }
}