Files
yavsc/Yavsc/Models/Haircut/HairPrestation.cs
2017-02-23 03:10:30 +01:00

19 lines
508 B
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Yavsc.Models.Market;
namespace Yavsc.Models.Haircut
{
public class HairPrestation : Service
{
public HairLength Length { get; set; }
public HairCutGenders Gender { get; set; }
public bool Cut { get; set; }
public HairDressings Dressing { get; set; }
public HairTechnos Tech { get; set; }
public bool Shampoo { get; set; }
public HairTaint[] Taints { get; set; }
public bool Cares { get; set; }
}
}