2017-02-23 03:10:30 +01:00
|
|
|
|
|
2017-02-13 01:32:03 +01:00
|
|
|
|
using Yavsc.Models.Market;
|
2017-02-11 15:46:26 +01:00
|
|
|
|
|
2017-02-12 03:53:33 +01:00
|
|
|
|
namespace Yavsc.Models.Haircut
|
2017-02-11 15:46:26 +01:00
|
|
|
|
{
|
2017-02-13 01:32:03 +01:00
|
|
|
|
public class HairPrestation : Service
|
2017-02-11 15:46:26 +01:00
|
|
|
|
{
|
|
|
|
|
|
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; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|