Добавил search модели
This commit is contained in:
parent
fadc72399f
commit
9f6b8ec085
@ -0,0 +1,9 @@
|
||||
namespace InternetShopContracts.DataSearchModels
|
||||
{
|
||||
public class OrderSearchModel
|
||||
{
|
||||
public string? CustomerFIO { get; set; }
|
||||
public string? CustomerEmail { get; set; }
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
namespace InternetShopContracts.DataSearchModels
|
||||
{
|
||||
public class ProductSearchModel
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user