2024-05-19 16:35:35 +04:00
|
|
|
|
using ElectronicsShopDataModels.Enums;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopContracts.SearchModels
|
|
|
|
|
{
|
2024-05-22 23:00:35 +04:00
|
|
|
|
public class EmployeeSearchModel
|
2024-05-19 16:35:35 +04:00
|
|
|
|
{
|
2024-05-22 23:00:35 +04:00
|
|
|
|
public int? ID { get; set; }
|
|
|
|
|
public string? EmployeFIO { get; set; }
|
|
|
|
|
public string? Login { get; set; }
|
2024-05-19 16:35:35 +04:00
|
|
|
|
}
|
|
|
|
|
}
|