Api/NetinaShop.Domain/Models/Districts/City.cs

9 lines
250 B
C#

namespace NetinaShop.Domain.Models.Districts;
public class City
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Slug { get; set; } = string.Empty;
public int province_id { get; set; }
}