19 lines
404 B
C#
19 lines
404 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ComputerShopContracts.SearchModels
|
|||
|
{
|
|||
|
public class UserSearchModel
|
|||
|
{
|
|||
|
public int? Id { get; set; }
|
|||
|
public string? Login { get; set; }
|
|||
|
|
|||
|
//!!!ПОИСК ПО ПАРОЛЮ НЕ СТАЛ ДОБАВЛЯТЬ, ИБО СТРАННО
|
|||
|
|
|||
|
public string? Email { get; set; }
|
|||
|
}
|
|||
|
}
|