#167 : Ajout des CRUD sur Style.

This commit is contained in:
Loic Masi
2026-03-31 19:45:50 +02:00
parent bf4b12997c
commit d3097545ad
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; }
}
}