using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace DTOs
{
///
/// Classe de gestion des Joueurs
///
public class JoueurDTO
{
#region Properties
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }
public string Pseudo { get; set; }
public ICollection PartieDTO { get; set; } = new List();
#endregion
}
}