diff --git a/Webzine.Entity/Artiste.cs b/Webzine.Entity/Artiste.cs
new file mode 100644
index 0000000..257fe56
--- /dev/null
+++ b/Webzine.Entity/Artiste.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Text;
+using System.Timers;
+
+namespace Webzine.Entity
+{
+ ///
+ /// Classe représentant un artiste.
+ /// Lien avec l'entité : un artiste peut avoir plusieurs titres, mais un titre n'a qu'un seul artiste.
+ ///
+ public class Artiste
+ {
+ public int IdArtiste { get; set; }
+
+ [Required]
+ [MinLength(2)]
+ [MaxLength(50)]
+ [Display(Name = "Nom de l'artiste")]
+ public string Nom { get; set; }
+
+ public string Biographie { get; set; }
+
+ public List Titres { get; set; }
+ }
+}