yavsc/YavscLib/HairCut/IHairCutQuery.cs

10 lines
189 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; }
2017-04-01 02:14:10 +02:00
long? LocationId { get; set; }
2017-03-23 00:44:27 +01:00
}
}