- 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
- {
- public class Label : BaseModel
- {
- [PrimaryKey("id")] public int ID { get; set; }
- [Column("label_name")] public string label { get; set; }
- }
- }
|