2023-04-09 01:27:52 +04:00

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; }
}
}