16 lines
378 B
C#
16 lines
378 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
|
|||
|
namespace Weee.DataTransferObject
|
|||
|
{
|
|||
|
public class QueryRequestDTO
|
|||
|
{
|
|||
|
public string searchText { get; set; }
|
|||
|
[Range(1, Int32.MaxValue)]
|
|||
|
public int? page { get; set; }
|
|||
|
public int? status { get; set; }
|
|||
|
}
|
|||
|
}
|