11 lines
226 B
C#
11 lines
226 B
C#
|
namespace BeautySalonDataModels.Models
|
|||
|
{
|
|||
|
public interface IVisitModel : IId
|
|||
|
{
|
|||
|
DateTime DateOfVisit { get; }
|
|||
|
int ClientId { get; }
|
|||
|
int MasterId { get; }
|
|||
|
int ServiceId { get; }
|
|||
|
}
|
|||
|
}
|