SSLR/SSLR/Assets/Scripts/supabaseClasses.cs
2025-02-16 23:00:42 +08:00

21 lines
No EOL
637 B
C#

using Postgrest.Attributes;
using Postgrest.Models;
[Table("test")]
public class Test : BaseModel
{
[Column()] public string name { get; set; }
[Column()] public int score { get; set; }
}
[Table("users")]
public class Users : BaseModel
{
[Column()] public string uid { get; set; }
[Column()] public string profilePictureUrl { get; set; }
[Column()] public int score { get; set; }
[Column()] public string displayName { get; set; }
[Column()] public int daysPlayed { get; set; }
[Column()] public int customersHelpedCorrectly { get; set; }
[Column()] public int customersHelpedWrongly { get; set; }
}