Добавил search модели

This commit is contained in:
Никита Потапов 2024-11-19 22:04:00 +04:00
parent fadc72399f
commit 9f6b8ec085
2 changed files with 17 additions and 0 deletions

View File

@ -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; }
}
}

View File

@ -0,0 +1,8 @@
namespace InternetShopContracts.DataSearchModels
{
public class ProductSearchModel
{
public string? Name { get; set; }
public int? Id { get; set; }
}
}