scoreboard-api/DatabaseModels/ScoreboardRecord.cs
cuqmbr 9c76d4965b chore: update db model & migrations
Remove id field and set username field to be a primary key
2022-07-15 20:44:15 +03:00

12 lines
241 B
C#

using System.ComponentModel.DataAnnotations;
namespace DatabaseModels;
public class ScoreboardRecord
{
[Key]
public string? Username { get; set; }
public int Score { get; set; }
public DateTime PostTime { get; set; }
}