Models.cs 384 B

12345678910111213141516
  1. using Supabase.Postgrest.Attributes;
  2. using Supabase.Postgrest.Models;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace TestProject1
  9. {
  10. public class Label : BaseModel
  11. {
  12. [PrimaryKey("id")] public int ID { get; set; }
  13. [Column("label_name")] public string label { get; set; }
  14. }
  15. }