constellation-api/CH.Enum/Currency.cs

10 lines
121 B
C#
Raw Normal View History

2025-01-08 17:16:27 -05:00
using NpgsqlTypes;
namespace CH.Enum;
public enum Currency
{
2025-01-08 17:16:27 -05:00
[PgName("USD")]
USD,
2025-01-08 17:16:27 -05:00
[PgName("CAD")]
CAD,
}