Class CardCount
- Namespace
- TcgDex.Models
- Assembly
- TcgDex.CSharpSdk.dll
How many cards a set contains, broken down by printing where the API reports it.
public sealed record CardCount : IEquatable<CardCount>Inheritance
Implements
Inherited Members
Properties
FirstEd
Count of cards with a first-edition printing.
public int? FirstEd { get; init; }Property Value
- int?
Holo
Count of cards with a holofoil printing.
public int? Holo { get; init; }Property Value
- int?
Normal
Count of cards with a normal printing.
public int? Normal { get; init; }Property Value
- int?
Official
The set's official size, as printed on the cards.
public int Official { get; init; }Property Value
Reverse
Count of cards with a reverse-holofoil printing.
public int? Reverse { get; init; }Property Value
- int?
Total
Total cards including secret rares and promos.
public int Total { get; init; }