9 lines
168 B
C#
9 lines
168 B
C#
|
namespace BeautySalonDataModels.Models
|
|||
|
{
|
|||
|
public interface IClientModel : IId
|
|||
|
{
|
|||
|
string ClientFIO { get; }
|
|||
|
string PhoneNumber { get; }
|
|||
|
}
|
|||
|
}
|