Attractions.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using Supabase.Postgrest.Attributes;
  2. using Supabase.Postgrest.Models;
  3. namespace UnitTestTripHelper.Model
  4. {
  5. [Table("attractions")]
  6. public class Attractions : BaseModel
  7. {
  8. [PrimaryKey("id")]
  9. public int Id { get; set; }
  10. [Column("city")]
  11. public int City { get; set; }
  12. [Column("currency")]
  13. public int Currency { get; set; }
  14. [Column("name")]
  15. public string Name { get; set; }
  16. [Column("visiting")]
  17. public string Visiting { get; set; }
  18. [Column("work_schedule")]
  19. public string Work_schedule { get; set; }
  20. [Column("price_showing")]
  21. public int Price_showing { get; set; }
  22. [Column("photo")]
  23. public string Photo { get; set; }
  24. [Column("history")]
  25. public string History { get; set; }
  26. [Column("address")]
  27. public string Address { get; set; }
  28. [Column("route")]
  29. public string Route { get; set; }
  30. [Column("price")]
  31. public string Price { get; set; }
  32. [Column("coordinates")]
  33. public string Coordinates { get; set; }
  34. [Column("schedule_more")]
  35. public string Schedule_more { get; set; }
  36. }
  37. }