yavsc/YavscLib/HairCut/IPrestation.cs

9 lines
144 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; }
}
}