14 lines
290 B
C#
14 lines
290 B
C#
namespace Webzine.WebApplication.ViewsModels.Titre;
|
|
|
|
public class TitreStyleItem
|
|
{
|
|
public int IdTitre { get; set; }
|
|
|
|
public string? Libelle { get; set; }
|
|
|
|
public string? ArtisteNom { get; set; }
|
|
|
|
public string? UrlJaquette { get; set; }
|
|
|
|
public int Duree { get; set; }
|
|
} |