//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace Webzine.WebApplication.Areas.Administration.ViewModels.Style
{
///
/// ViewModel pour la modification d'un style en administration.
///
public class StyleEditViewModel
{
///
/// Obtient ou définit le libellé du style.
///
public int IdStyle { get; set; }
///
/// Obtient ou définit le libellé du style.
///
public string Libelle { get; set; }
}
}