2022-08-13 05:59:37 +03:00
|
|
|
namespace BlueWest.Data;
|
|
|
|
|
|
|
|
public class Country
|
|
|
|
{
|
2022-08-13 20:15:43 +03:00
|
|
|
public int Code { get; set; } // Primary key
|
|
|
|
public string StateName { get; set; }
|
|
|
|
public string TLD { get; set; }
|
|
|
|
|
|
|
|
public Country(int code, string stateName, string tld)
|
|
|
|
{
|
|
|
|
Code = code;
|
|
|
|
StateName = stateName;
|
|
|
|
TLD = tld;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Country()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2022-08-13 05:59:37 +03:00
|
|
|
}
|