using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolDataModels.Models { /// /// Сотрудник /// public interface IEmployeeModel : IId { /// /// Имя /// public string EmployeeName { get; set; } /// /// Пароль /// public string EmployeePassword { get; set; } /// /// Email /// public string EmployeeEmail { get; set; } /// /// Телефон /// public string EmployeePhone { get; set; } } }