14 lines
339 B
C#
Raw Permalink Normal View History

2024-12-06 01:03:44 +04:00
namespace Domain.Entities
{
2024-12-08 22:57:55 +04:00
public class City
2024-12-06 01:03:44 +04:00
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
2024-12-08 22:57:55 +04:00
public Guid RegionId { get; set; }
public Region Region { get; set; } = null!;
public List<Street> Streets { get; set; } = new List<Street>();
2024-12-06 01:03:44 +04:00
}
}