using Supabase.Postgrest.Attributes; using Supabase.Postgrest.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestProject1 { //city [Table("city")] public class Season : BaseModel { //table season [PrimaryKey("id")] public int Id { get; set; } [Column("title_season")] public string title { get; set; } } public class Style: BaseModel { //table style [PrimaryKey("id")] public int Id { get; set; } [Column("title_style")] public string title { get; set; } } public class Type : BaseModel { //table style [PrimaryKey("id")] public int Id { get; set; } [Column("title_type")] public string title { get; set; } } public class Users : BaseModel { //table style [PrimaryKey("id")] public int Id { get; set; } [Column("user")] public string uid { get; set; } [Column("Name")] public string name { get; set; } } public class type_subtype : BaseModel { //table style [PrimaryKey("id")] public int Id { get; set; } [Column("id_type")] public string type { get; set; } [Column("type_subtype")] public string subtype { get; set; } } }