yavsc/YavscLib/HairCut/IHairCutQuery.cs

10 lines
188 B
C#
Raw Normal View History

2017-03-23 00:44:27 +01:00
namespace YavscLib.HairCut
{
public interface IHairCutQuery
{
long Id { get; set; }
long PrestationId { get; set; }
long LocationId { get; set; }
}
}