12 lines
350 B
C#
12 lines
350 B
C#
namespace C969Project.Data.Models;
|
|
|
|
public class City
|
|
{
|
|
public int CityID { get; set; }
|
|
public string CityName { get; set; }
|
|
public int CountryID { get; set; }
|
|
public DateTime CreateDate { get; set; }
|
|
public string CreatedBy { get; set; }
|
|
public DateTime LastUpdate { get; set; }
|
|
public string LastUpdateBy { get; set; }
|
|
} |