2024-05-13 13:02:09 +03:30
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Shared.DTOs.Serch
|
|
|
|
|
{
|
|
|
|
|
public class ItemSerchGetInvoices : IFildGlobalItemSerch
|
|
|
|
|
{
|
2024-05-14 14:58:25 +03:30
|
|
|
|
public string? Title { get; set; }//
|
|
|
|
|
public int? InvoiceID { get; set; }//
|
2024-05-13 13:02:09 +03:30
|
|
|
|
public int? CustomerID { get; set; }
|
2024-05-14 14:58:25 +03:30
|
|
|
|
public InvoiceType? invoiceType { get; set; }//
|
2024-05-13 13:02:09 +03:30
|
|
|
|
public int PageIndex { get; set; } = 1;
|
|
|
|
|
public int PageSize { get; set; } = 5;
|
|
|
|
|
}
|
|
|
|
|
}
|