API
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

PropertyImage.cs 431B

123456789101112131415
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. namespace UnivateProperties_API.Model.Properties
  3. {
  4. public class PropertyImage : BaseEntity
  5. {
  6. #region Properties
  7. [ForeignKey("Property")]
  8. public int PropertyId { get; set; }
  9. public string Image { get; set; }
  10. public bool IsDefault { get; set; }
  11. public virtual Property Property { get; set; }
  12. #endregion
  13. }
  14. }