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

9 lines
272 B
C#

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