Files
IsleBot/Match.cs
2023-11-06 20:38:28 +01:00

17 lines
382 B
C#

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; }
}