2017-02-27 19:28:32 +01:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
2017-02-12 03:53:33 +01:00
|
|
|
namespace Yavsc.Models.Haircut
|
2017-02-11 15:46:26 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public enum HairTechnos
|
|
|
|
|
{
|
2017-02-28 14:01:24 +01:00
|
|
|
[Display(Name="Aucune technique spécifique")]
|
|
|
|
|
None,
|
|
|
|
|
|
|
|
|
|
[Display(Name="Couleur")]
|
2017-02-11 15:46:26 +01:00
|
|
|
Color,
|
2017-02-27 19:28:32 +01:00
|
|
|
|
|
|
|
|
[Display(Name="Permantante")]
|
2017-02-11 15:46:26 +01:00
|
|
|
Permanent,
|
2017-02-27 19:28:32 +01:00
|
|
|
[Display(Name="Défrisage")]
|
2017-02-11 15:46:26 +01:00
|
|
|
Defris,
|
2017-02-27 19:28:32 +01:00
|
|
|
[Display(Name="Mêches")]
|
2017-02-11 15:46:26 +01:00
|
|
|
Mech,
|
2017-02-27 19:28:32 +01:00
|
|
|
Balayage
|
2017-02-11 15:46:26 +01:00
|
|
|
}
|
2017-02-27 19:28:32 +01:00
|
|
|
}
|