17 lines
554 B
C#
17 lines
554 B
C#
// <copyright file="StyleCreateViewModel.cs" company="Equipe 1 - BOBIN, MASI, NODON, VETU">
|
|
// Copyright (c) Equipe 1 - BOBIN, MASI, NODON, VETU. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Webzine.WebApplication.Areas.Administration.ViewModels.Style
|
|
{
|
|
/// <summary>
|
|
/// ViewModel pour la création d'un style en administration.
|
|
/// </summary>
|
|
public class StyleCreateViewModel
|
|
{
|
|
/// <summary>
|
|
/// Obtient ou définit le libellé du style.
|
|
/// </summary>
|
|
public string Libelle { get; set; }
|
|
}
|
|
} |