#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,19 +4,22 @@
namespace Webzine.WebApplication.Areas.Administration.ViewModels.Style
{
using System.ComponentModel.DataAnnotations;
/// <summary>
/// ViewModel pour la modification d'un style en administration.
/// </summary>
public class StyleEditViewModel
{
/// <summary>
/// Obtient ou définit le libellé du style.
/// Obtient ou definit l'identifiant du style.
/// </summary>
public int IdStyle { get; set; }
/// <summary>
/// Obtient ou définit le libellé du style.
/// Obtient ou definit le libelle du style.
/// </summary>
[Required]
public string Libelle { get; set; }
}
}