You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
421 B
18 lines
421 B
using System;
|
|
namespace EntityFrameWorkLib
|
|
{
|
|
public class StatsEntity
|
|
{
|
|
public int Id { get; set; }
|
|
public int NbWin { get; set; }
|
|
public int NbPlayed { get; set; }
|
|
public int MaxChain { get; set; }
|
|
public int MaxZone { get; set; }
|
|
public int MaxPoints { get; set; }
|
|
|
|
public int PlayerId { get; set; }
|
|
public PlayerEntity Player { get; set; }
|
|
}
|
|
}
|
|
|