26 lines
562 B
C#
26 lines
562 B
C#
using Webzine.Entity;
|
|
|
|
namespace Webzine.WebApplication.ViewsModels.Titre;
|
|
|
|
public class TitreContent
|
|
{
|
|
public int IdTitre { get; set; }
|
|
|
|
public string Libelle { get; set; }
|
|
|
|
public string Chronique { get; set; }
|
|
|
|
public DateTime DateSortie { get; set; }
|
|
|
|
public int NbLikes { get; set; }
|
|
|
|
public string UrlJaquette { get; set; }
|
|
|
|
public string UrlEcoute { get; set; }
|
|
|
|
public string ArtisteNom { get; set; }
|
|
|
|
public List<Style> Styles { get; set; } = new();
|
|
|
|
public List<Commentaire> Commentaires { get; set; } = new();
|
|
} |