10 lines
144 B
C#
10 lines
144 B
C#
namespace YavscLib.HairCut
|
||
{
|
||
public interface IPrestation
|
||
{
|
||
long Id { get; set; }
|
||
int Length { get; set; }
|
||
|
||
}
|
||
}
|