using Microsoft.AspNetCore.Mvc.Rendering; namespace Webzine.WebApplication.Areas.Administration.ViewModels.Titre; public class AdminTitreForm { public int Id { get; set; } public int IdArtiste { get; set; } public string Libelle { get; set; } public string Album { get; set; } public string Chronique { get; set; } public DateTime DateSortie { get; set; } public int Duree { get; set; } public string UrlJaquette { get; set; } public string UrlEcoute { get; set; } public int NbLectures { get; set; } public int NbLikes { get; set; } public List Styles { get; set; } = new(); public List Artistes { get; set; } public List AllStyles { get; set; } }