9 lines
164 B
C#
9 lines
164 B
C#
namespace BeautySalonDataModels.Models
|
|
{
|
|
public interface IServiceModel : IId
|
|
{
|
|
string ServiceName { get; }
|
|
double Cost { get; }
|
|
}
|
|
}
|