refabriqué
This commit is contained in:
parent
100e61e42e
commit
5c5420dc25
6 changed files with 32 additions and 6 deletions
11
YavscLib/HairCut/HairLength.cs
Normal file
11
YavscLib/HairCut/HairLength.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
namespace YavscLib.HairCut
|
||||
{
|
||||
public enum HairLength : int
|
||||
{
|
||||
HalfLong,
|
||||
|
||||
Short = 1,
|
||||
|
||||
Long
|
||||
}
|
||||
}
|
||||
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -112,6 +112,7 @@
|
|||
<Content Include="project.json" />
|
||||
<Content Include="HairCut\IHairCutQuery.cs" />
|
||||
<Content Include="HairCut\IPrestation.cs" />
|
||||
<Content Include="HairCut\HairLength.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue