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

10 lines
200 B
C#
Raw Normal View History

2022-08-13 06:35:36 +03:00
using System.ComponentModel.DataAnnotations;
2022-08-13 05:59:37 +03:00
namespace BlueWest.Data;
public class Country
{
2022-08-13 06:35:36 +03:00
[Key] public int Code { get; }
public string StateName { get; }
public string TLD { get; }
2022-08-13 05:59:37 +03:00
}