- using Supabase.Postgrest.Attributes;
- using Supabase.Postgrest.Models;
- namespace UnitTestTripHelper.Model
- {
- [Table("currency")]
- public class Currency : BaseModel
- {
- [PrimaryKey("id")]
- public int Id { get; set; }
- [Column("country")]
- public int Country { get; set; }
- [Column("title")]
- public string Title { get; set; }
- }
- }
|