AccountingWarehouseProducts.../AccountingWarehouseProducts/AccountingWarehouseProductsContracts/SearchModels/OrderSearchModel.cs

14 lines
267 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountingWarehouseProductsContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
}
}