db + migrations

This commit is contained in:
Aleksandr Popov
2023-06-25 18:33:44 +02:00
parent 944712df97
commit 34acef713d
14 changed files with 255 additions and 172 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace TURN.Services.Chess.DBModel
{
public partial class Game
{
public long? GameId { get; set; }
public string? BlackUserName { get; set; }
public string? WhiteUserName { get; set; }
public string? StartDate { get; set; }
}
}