diff --git a/Sources/DTOs/JoueurDTO.cs b/Sources/DTOs/JoueurDTO.cs index 89f77b8..40243cd 100644 --- a/Sources/DTOs/JoueurDTO.cs +++ b/Sources/DTOs/JoueurDTO.cs @@ -9,8 +9,6 @@ namespace DTOs 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();