using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolDataModels.Models { /// /// Клиент /// public interface IClientModel : IId { /// /// Имя /// public string ClientName { get; } /// /// Email /// public string ClientEmail { get; } /// /// Телефон /// public string ClientPhone { get; } /// /// Пароль /// public string ClientPassword { get; } } }