ClientSearchModel
This commit is contained in:
parent
4cad3bc145
commit
50b96821df
@ -1,11 +1,9 @@
|
||||
using ClientryStoreContracts.BindingModels;
|
||||
using ClientryStoreContracts.BusinessLogicsContracts;
|
||||
using ClientryStoreContracts.SearchModels;
|
||||
using ClientryStoreContracts.StoragesContracts;
|
||||
using ClientryStoreContracts.ViewModels;
|
||||
using JewelryStoreContracts.BindingModels;
|
||||
using JewelryStoreContracts.BindingModels;
|
||||
using JewelryStoreContracts.BusinessLogicsContracts;
|
||||
using JewelryStoreContracts.SearchModels;
|
||||
using JewelryStoreContracts.StoragesContracts;
|
||||
using JewelryStoreContracts.ViewModels;
|
||||
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
16
JewelryStoreContracts/SearchModels/ClientSearchModel.cs
Normal file
16
JewelryStoreContracts/SearchModels/ClientSearchModel.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace JewelryStoreContracts.SearchModels
|
||||
{
|
||||
public class ClientSearchModel
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? ClientFIO { get; set; }
|
||||
public string? Email { get; set; }
|
||||
public string? Password { get; set; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user