2023-04-05 22:06:49 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FurnitureContracts.SearchModels
|
|
|
|
|
{
|
2023-04-06 20:27:21 +04:00
|
|
|
|
public class ManagerSearchModel
|
2023-04-05 22:06:49 +04:00
|
|
|
|
{
|
2023-04-06 20:27:21 +04:00
|
|
|
|
public string? UserName { get; set; }
|
2023-04-05 22:06:49 +04:00
|
|
|
|
public int? Id { get; set; }
|
2023-04-07 15:38:47 +04:00
|
|
|
|
public string? Login { get; set; }
|
2023-04-05 22:06:49 +04:00
|
|
|
|
}
|
|
|
|
|
}
|