This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
|
||||
namespace Webzine.WebApplication.ViewModels.Admin.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; }
|
||||
}
|
||||
Reference in New Issue
Block a user