API
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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