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; } }