elliebot/src/Ellie.Econ/Deck/NewCard.cs
2024-03-23 20:51:27 +13:00

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;