9 lines
268 B
C#
9 lines
268 B
C#
|
|
namespace Netina.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;
|
|||
|
|
}
|