21 lines
No EOL
637 B
C#
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; }
|
|
} |