SUBD_PIbd-21_Balberova_D.N./BeautySaloon/BeautySaloonDataModels/IClientModel.cs

12 lines
236 B
C#
Raw Normal View History

namespace BeautySaloonDataModels
2023-03-28 14:51:57 +04:00
{
public interface IClientModel
{
int Id { get; }
string Name { get; }
string Surname { get; }
string Patronymic { get; }
string Phone { get; }
}
}