c969-project/C969Project/Data/Models/City.cs
2025-06-14 19:29:58 -05:00

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