API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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