29 lines
667 B
C#
29 lines
667 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ZooDataModels.Models
|
|||
|
{
|
|||
|
public interface IEmployeeModel : IId
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Имя
|
|||
|
/// </summary>
|
|||
|
public string EmployeeName { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// Почта
|
|||
|
/// </summary>
|
|||
|
public string EmployeeEmail { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// Телефон
|
|||
|
/// </summary>
|
|||
|
public string EmployeePhone { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// Пароль
|
|||
|
/// </summary>
|
|||
|
public string EmployeePassword { get; set; }
|
|||
|
}
|
|||
|
}
|