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

8 lines
178 B
C#
Raw Normal View History

2022-08-13 05:59:37 +03:00
namespace BlueWest.Data;
public class Currency
{
2022-08-13 20:15:43 +03:00
public int Num { get; set; } // Primary key
public string Code { get; set; }
public Country Country { get; set; }
2022-08-13 05:59:37 +03:00
}