yavsc/YavscLib/HairCut/IPrestation.cs

19 lines
394 B
C#
Raw Normal View History

2017-03-23 00:44:27 +01:00
namespace YavscLib.HairCut
{
public interface IPrestation
{
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
}
}