1234567891011121314151617181920212223242526272829303132333435363738 |
- using Supabase.Postgrest.Attributes;
- using Supabase.Postgrest.Models;
- namespace UnitTestTripHelper.Model
- {
- [Table("attractions")]
- public class Attractions : BaseModel
- {
- [PrimaryKey("id")]
- public int Id { get; set; }
- [Column("city")]
- public int City { get; set; }
- [Column("currency")]
- public int Currency { get; set; }
- [Column("name")]
- public string Name { get; set; }
- [Column("visiting")]
- public string Visiting { get; set; }
- [Column("work_schedule")]
- public string Work_schedule { get; set; }
- [Column("price_showing")]
- public int Price_showing { get; set; }
- [Column("photo")]
- public string Photo { get; set; }
- [Column("history")]
- public string History { get; set; }
- [Column("address")]
- public string Address { get; set; }
- [Column("route")]
- public string Route { get; set; }
- [Column("price")]
- public string Price { get; set; }
- [Column("coordinates")]
- public string Coordinates { get; set; }
- [Column("schedule_more")]
- public string Schedule_more { get; set; }
- }
- }
|