20 lines
376 B
C#
20 lines
376 B
C#
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; }
|
|
}
|
|
}
|