Files
moadiran/Shared/DTOs/Serch/ItemSerchGetInvoices.cs

21 lines
601 B
C#
Raw Normal View History

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-30 15:08:36 +03:30
public int? refInvoiceID { get; set; }//
2024-05-13 13:02:09 +03:30
public int? CustomerID { get; set; }
2024-06-27 19:18:50 +03:30
public int? CodID { 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;
}
}