first commit
This commit is contained in:
17
Complex.Domain/Entities/Province.cs
Normal file
17
Complex.Domain/Entities/Province.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Complex.Domain.Entities
|
||||
{
|
||||
public partial class Province
|
||||
{
|
||||
public Province()
|
||||
{
|
||||
Cities = new HashSet<City>();
|
||||
}
|
||||
|
||||
public int ProvinceId { get; set; }
|
||||
public string? ProvinceTitle { get; set; }
|
||||
public virtual ICollection<City> Cities { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user