5 lines
No EOL
167 B
C#
5 lines
No EOL
167 B
C#
namespace Ellie.Econ;
|
|
|
|
public abstract record class NewCard<TSuit, TValue>(TSuit Suit, TValue Value)
|
|
where TSuit : struct, Enum
|
|
where TValue : struct, Enum; |