yavsc/Yavsc/Models/Haircut/HairPrestation.cs

20 lines
604 B
C#

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
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; }
}
}