refabriqué

This commit is contained in:
Paul Schneider 2017-03-23 02:17:30 +01:00
commit 5c5420dc25
6 changed files with 32 additions and 6 deletions

View file

@ -0,0 +1,11 @@
namespace YavscLib.HairCut
{
public enum HairLength : int
{
HalfLong,
Short = 1,
Long
}
}

View file

@ -4,6 +4,16 @@ namespace YavscLib.HairCut
{
long Id { get; set; }
int Length { get; set; }
int Gender { get; set; }
bool Cut { get; set; }
int Dressing { get; set; }
int Tech { get; set; }
bool Shampoo { get; set; }
long[] Taints { get; set; }
bool Cares { get; set; }
}
}