2024-04-27 13:01:57 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopContracts.SearchModels
|
|
|
|
|
{
|
2024-05-19 16:35:35 +04:00
|
|
|
|
public class ClientSearchModel
|
2024-04-27 13:01:57 +04:00
|
|
|
|
{
|
2024-04-28 23:08:09 +04:00
|
|
|
|
public int? ID { get; set; }
|
2024-05-27 18:33:24 +04:00
|
|
|
|
public string? ClientFIO { get; set; }
|
2024-05-22 23:00:35 +04:00
|
|
|
|
public string? Email { get; set; }
|
2024-05-26 17:47:24 +04:00
|
|
|
|
public string? Passwrod { get; set; }
|
2024-04-27 13:01:57 +04:00
|
|
|
|
}
|
|
|
|
|
}
|