yavsc/Yavsc.Server/Models/HairCut/HairLength.cs

12 lines
135 B
C#
Raw Normal View History

2017-04-09 03:38:57 +02:00
2017-02-28 14:01:24 +01:00
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-04-09 03:38:57 +02:00
HalfLong=0,
Short=1,
2017-02-28 14:01:24 +01:00
2017-04-09 03:38:57 +02:00
Long=2
2017-02-11 15:46:26 +01:00
}
2017-03-23 00:44:27 +01:00
}