2024-04-21 20:06:12 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HotelDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IAdministratorModel : IId
|
|
|
|
|
{
|
|
|
|
|
string AdministratorFIO { get; }
|
|
|
|
|
string AdministratorPhone { get; }
|
2024-04-21 20:10:21 +04:00
|
|
|
|
string AdministratorLogin { get; }
|
|
|
|
|
string AdministratorPassword { get; }
|
|
|
|
|
string AdministratorEmail { get; }
|
2024-04-21 20:06:12 +04:00
|
|
|
|
}
|
|
|
|
|
}
|