ISEbd-21_Tukaeva_A_A_School/School/SchoolDataModels/Models/IEmployeeModel.cs

32 lines
633 B
C#
Raw Permalink Normal View History

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