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