12 lines
288 B
C#
12 lines
288 B
C#
namespace Webzine.WebApplication.Areas.Administration.ViewModels.Artiste
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
public class ArtisteCreateViewModel
|
|
{
|
|
[Required]
|
|
public string Nom { get; set; }
|
|
|
|
public string Biographie { get; set; }
|
|
}
|
|
} |