API
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Suburb.cs 413B

12345678910111213141516
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. namespace UnivateProperties_API.Model.Region
  3. {
  4. public class Suburb : BaseEntity
  5. {
  6. #region Properties
  7. [ForeignKey("City")]
  8. public int CityId { get; set; }
  9. public string Description { get; set; }
  10. public string PostalCode { get; set; }
  11. public virtual City City { get; set; }
  12. #endregion
  13. }
  14. }