22 lines
660 B
C#
22 lines
660 B
C#
// <copyright file="StyleEditViewModel.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Webzine.WebApplication.Areas.Administration.ViewModels.Style
|
|
{
|
|
/// <summary>
|
|
/// ViewModel pour la modification d'un style en administration.
|
|
/// </summary>
|
|
public class StyleEditViewModel
|
|
{
|
|
/// <summary>
|
|
/// Obtient ou définit le libellé du style.
|
|
/// </summary>
|
|
public int IdStyle { get; set; }
|
|
|
|
/// <summary>
|
|
/// Obtient ou définit le libellé du style.
|
|
/// </summary>
|
|
public string Libelle { get; set; }
|
|
}
|
|
} |