yavsc/Yavsc.Server/Models/HairCut/IHairPrestation.cs

19 lines
387 B
C#
Raw Normal View History

2017-05-27 16:22:58 +02:00
namespace Yavsc
2017-03-23 00:44:27 +01:00
{
2017-04-08 00:32:23 +02:00
public interface IHairPrestation
2017-03-23 00:44:27 +01:00
{
long Id { get; set; }
int Length { get; set; }
2017-03-23 02:17:30 +01:00
int Gender { get; set; }
bool Cut { get; set; }
2017-03-23 00:44:27 +01:00
2017-03-23 02:17:30 +01:00
int Dressing { get; set; }
int Tech { get; set; }
bool Shampoo { get; set; }
long[] Taints { get; set; }
bool Cares { get; set; }
2017-03-23 00:44:27 +01:00
}
}