14 lines
339 B
C#
14 lines
339 B
C#
namespace Domain.Entities
|
|
{
|
|
public class City
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public Guid RegionId { get; set; }
|
|
public Region Region { get; set; } = null!;
|
|
|
|
public List<Street> Streets { get; set; } = new List<Street>();
|
|
}
|
|
}
|