//
// Copyright (c) Equipe 1 - BOBIN, MASI, NODON, VETU. All rights reserved.
//
namespace Webzine.WebApplication.Areas.Administration.ViewModels.Styles
{
using System.ComponentModel.DataAnnotations;
///
/// ViewModel pour la modification d'un style en administration.
///
public class StyleEditViewModel
{
///
/// Obtient ou definit l'identifiant du style.
///
public int IdStyle { get; set; }
///
/// Obtient ou definit le libelle du style.
///
[Required(ErrorMessage = "Le libelle du style est obligatoire.")]
public string Libelle { get; set; }
}
}