21 lines
456 B
C#
21 lines
456 B
C#
namespace Webzine.WebApplication.ViewModels.Admin.Titre
|
|
{
|
|
public class AdminTitreList
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Artiste { get; set; }
|
|
|
|
public string Titre { get; set; }
|
|
|
|
public string Duree { get; set; }
|
|
|
|
public DateTime DateSortie { get; set; }
|
|
|
|
public int NbLectures { get; set; }
|
|
|
|
public int NbLikes { get; set; }
|
|
|
|
public int NbCommentaires { get; set; }
|
|
}
|
|
} |