2024-04-21 21:19:22 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HotelContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class AdministratorSearchModel
|
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
|
|
|
|
public string? AdministratorFIO { get; set; }
|
|
|
|
|
public string? AdministratorLogin { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? AdministratorPassword { get; set; }
|
|
|
|
|
public string? AdministratorEmail { get; set; }
|
2024-04-22 19:44:52 +04:00
|
|
|
|
public string? AdministratorPhone { get; set; }
|
2024-04-21 21:19:22 +04:00
|
|
|
|
}
|
|
|
|
|
}
|