2017-02-28 14:01:24 +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 HairLength : int
|
|
|
|
|
{
|
2017-02-28 14:01:24 +01:00
|
|
|
[Display(Name="Mi-longs")]
|
2017-02-11 15:46:26 +01:00
|
|
|
HalfLong,
|
2017-02-28 14:01:24 +01:00
|
|
|
|
|
|
|
|
[Display(Name="Courts")]
|
|
|
|
|
Short = 1,
|
|
|
|
|
|
|
|
|
|
[Display(Name="Longs")]
|
2017-02-11 15:46:26 +01:00
|
|
|
Long
|
|
|
|
|
}
|
|
|
|
|
}
|