AccountingWarehouseProducts.../AccountingWarehouseProducts/AccountingWarehouseProductsContracts/SearchModels/SupplierSearchModel.cs

16 lines
321 B
C#

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