10 lines
171 B
C#

namespace BeautySaloonDataModels
{
public interface IServiceModel
{
int Id { get; }
string Name { get; }
decimal Price { get; }
}
}