Country.cs 346 B

123456789101112131415
  1. using Supabase.Postgrest.Attributes;
  2. using Supabase.Postgrest.Models;
  3. namespace UnitTestTripHelper.Model
  4. {
  5. [Table("country")]
  6. public class Country : BaseModel
  7. {
  8. [PrimaryKey("id")]
  9. [Column("title")]
  10. public string Title { get; set; }
  11. [Column("flag")]
  12. public string Flag { get; set; }
  13. }
  14. }