mirror of
https://github.com/SamueleLorefice/isleBot.git
synced 2026-01-15 06:03:42 +00:00
Converted the project in C#, added Entity Framework Core.
This commit is contained in:
17
Match.cs
Normal file
17
Match.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace IsleBot;
|
||||
|
||||
public class Match {
|
||||
public int MatchId { get; set; }
|
||||
|
||||
public User PlayerA { get; set; }
|
||||
public Card PlayerACard { get; set; }
|
||||
|
||||
public User PlayerB { get; set; }
|
||||
public Card PlayerBCard { get; set; }
|
||||
|
||||
public int PlayedTurns { get; set; }
|
||||
|
||||
public EStatus Status { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user