9 lines
240 B
C#
9 lines
240 B
C#
namespace Webzine.WebApplication.Areas.Administration.ViewModels.Artiste
|
|
{
|
|
using Webzine.Entity;
|
|
public class GroupeArtisteViewModel
|
|
{
|
|
public IEnumerable<Artiste> Artistes { get; set; } = new List<Artiste>();
|
|
}
|
|
}
|