using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CAPI.Custom.Domain.PurchaseOrders { public class SearchModel { public int? SupplierId { get; set; } = null; public int? StatusId { get; set; } = null; public List DocumentTypeIds { get; set; } = null; public string Keyword { get; set; } = string.Empty; } }