- Création StyleViewModel - Création StylesController - Création de index.cshtml et delete.cshtml
10 lines
211 B
C#
10 lines
211 B
C#
namespace Webzine.WebApplication.Areas.Administration.ViewModels.Style
|
|
{
|
|
public class StyleDeleteViewModel
|
|
{
|
|
public int IdStyle { get; set; }
|
|
|
|
public string Libelle { get; set; }
|
|
}
|
|
}
|