CodeLiturgy.Dashboard/BlueWest.Data/Finance/Currency.cs

8 lines
150 B
C#
Raw Normal View History

2022-08-13 05:59:37 +03:00
namespace BlueWest.Data;
public class Currency
{
2022-08-13 06:35:36 +03:00
public string Code { get; }
public int Num { get; }
public Country Country { get; }
2022-08-13 05:59:37 +03:00
}