1234567891011121314151617181920212223242526272829303132333435363738 |
- using Supabase.Postgrest.Attributes;
- using Supabase.Postgrest.Models;
- namespace UnitTestTripHelper.Model
- {
- [Table("restaurants")]
- public class Restaurants : 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("work_schedule")]
- public string Work_schedule { get; set; }
- [Column("phone")]
- public string Phone { get; set; }
- [Column("photo")]
- public string Photo { get; set; }
- [Column("average_check")]
- public int Average_check { 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("price")]
- public string Price { get; set; }
- [Column("recommendations")]
- public string Recommendations { get; set; }
- [Column("coordinates")]
- public string Coordinates { get; set; }
- }
- }
|