12345678910111213141516171819202122232425262728293031323334353637383940 |
- using Supabase.Postgrest.Attributes;
- using Supabase.Postgrest.Models;
- namespace UnitTestTripHelper.Model
- {
- [Table("hotels")]
- public class Hotels : BaseModel
- {
- [PrimaryKey("id")]
- public int Id { get; set; }
- [Column("city")]
- public int City { get; set; }
- [Column("name")]
- public string Name { get; set; }
- [Column("rating")]
- public int Rating { get; set; }
- [Column("quantity_of_rooms")]
- public int Quantity_of_rooms { get; set; }
- [Column("floors")]
- public int Floors { get; set; }
- [Column("address")]
- public string Address { get; set; }
- [Column("basic_info")]
- public string Basic_info { get; set; }
- [Column("interior")]
- public string Interior { get; set; }
- [Column("photo_interior")]
- public string Photo_interior { get; set; }
- [Column("rooms")]
- public string Rooms { get; set; }
- [Column("photo_room")]
- public string Photo_room { get; set; }
- [Column("price")]
- public string Price { get; set; }
- [Column("services")]
- public string Services { get; set; }
- [Column("coordinates")]
- public string Coordinates { get; set; }
- }
- }
|