10 lines
239 B
C#
10 lines
239 B
C#
|
namespace InternetShopContracts.DataSearchModels
|
|||
|
{
|
|||
|
public class OrderSearchModel
|
|||
|
{
|
|||
|
public string? CustomerFIO { get; set; }
|
|||
|
public string? CustomerEmail { get; set; }
|
|||
|
public int? Id { get; set; }
|
|||
|
}
|
|||
|
}
|