mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -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); |