123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- namespace Agency
- {
- public partial class Addrese
- {
- public Addrese()
- {
- TheProperties = new HashSet<TheProperty>();
- }
- public int Id { get; set; }
- public string? Streat { get; set; }
- public int? HouseNumber { get; set; }
- public int? FlatNumber { get; set; }
- public string? City { get; set; } = null!;
- public virtual ICollection<TheProperty> TheProperties { get; set; }
- }
- }
|