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. }