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

Carousel.cs 439B

1234567891011121314
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. using UnivateProperties_API.Model.Properties;
  3. using UnivateProperties_API.Model.Timeshare;
  4. namespace UnivateProperties_API.Model.Misc
  5. {
  6. public class Carousel : BaseEntity
  7. {
  8. public int PropertyId { get; set; }
  9. public int TimeshareId { get; set; }
  10. public string Header { get; set; }
  11. public string Image { get; set; }
  12. }
  13. }