using Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model.Group { public class GroupeLivre : List { public string Auteur { get; set; } public GroupeLivre( string auteur,List listLivre) : base(listLivre) { Auteur = auteur; } } }