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