21 lines
590 B
C#
21 lines
590 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.DTOs.Serch
|
|
{
|
|
public class ItemSerchGetSentTax : IFildGlobalItemSerch
|
|
{
|
|
[Display(Name = "شناسه")]
|
|
public int? ID { get; set; }
|
|
public int? InvoiceID { get; set; }
|
|
public InvoiceType? invoiceType { get; set; }
|
|
public SentStatus? SentStatus { get; set; }
|
|
public int PageIndex { get; set; } = 1;
|
|
public int PageSize { get; set; } = 5;
|
|
}
|
|
}
|