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