mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
4 lines
159 B
C#
4 lines
159 B
C#
namespace Nadeko.Econ;
|
|
|
|
public sealed record class RegularCard(RegularSuit Suit, RegularValue Value)
|
|
: NewCard<RegularSuit, RegularValue>(Suit, Value); |