20 lines
363 B
C#
20 lines
363 B
C#
namespace BlueWest.Data;
|
|
|
|
public class Country
|
|
{
|
|
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()
|
|
{
|
|
|
|
}
|
|
} |