yavsc/Yavsc/Models/Haircut/HairPrestation.cs

19 lines
508 B
C#

9 years ago
using Yavsc.Models.Market;
9 years ago
9 years ago
namespace Yavsc.Models.Haircut
9 years ago
{
9 years ago
public class HairPrestation : Service
9 years ago
{
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; }
}
}