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