This commit is contained in:
mmrbnjd
2024-05-13 13:02:09 +03:30
parent 521c17cfe3
commit 4d3c364eca
9 changed files with 327 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs.Serch
{
public class ItemSerchGetInvoices : IFildGlobalItemSerch
{
public string? Title { get; set; }
public int? InvoiceID { get; set; }
public int? CustomerID { get; set; }
public InvoiceType? invoiceType { get; set; }
public int PageIndex { get; set; } = 1;
public int PageSize { get; set; } = 5;
}
}