API
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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