Files
webzine/Webzine.WebApplication/Areas/Administration/ViewModels/Titre/AdminTitreForm.cs

34 lines
756 B
C#

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<int> Styles { get; set; } = new();
public List<SelectListItem> Artistes { get; set; }
public List<SelectListItem> AllStyles { get; set; }
}