erreur sur la classe toModel de ChampionDTO à corriger

pull/1/head
Théo DUPIN 2 years ago
parent e8e062a0c8
commit 41f677359f

@ -72,6 +72,12 @@ public class Champion : IEquatable<Champion>
this.bio = bio;
}
public Champion(string name, string bio)
{
this.name = name;
this.bio = bio;
}
public ReadOnlyCollection<Skin> Skins { get; private set; }
private List<Skin> skins = new ();

Loading…
Cancel
Save