#167 : Ajout des CRUD sur Style.

This commit is contained in:
Loic Masi
2026-03-31 19:45:50 +02:00
parent 82f4321b5c
commit 00b8c2b33f
3 changed files with 158 additions and 86 deletions

View File

@@ -4,6 +4,8 @@
namespace Webzine.WebApplication.Areas.Administration.ViewModels.Style
{
using System.ComponentModel.DataAnnotations;
/// <summary>
/// ViewModel pour la création d'un style en administration.
/// </summary>
@@ -12,6 +14,7 @@ namespace Webzine.WebApplication.Areas.Administration.ViewModels.Style
/// <summary>
/// Obtient ou définit le libellé du style.
/// </summary>
[Required]
public string Libelle { get; set; }
}
}