...
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
namespace Back.Common.ViewModels
|
||||
{
|
||||
public class PagingDto<T>
|
||||
{
|
||||
public PagingDto(int RowCount, int pageCount, List<T> list)
|
||||
{
|
||||
this.RowCount = RowCount;
|
||||
this.list = list;
|
||||
PageCount = pageCount;
|
||||
|
||||
}
|
||||
public int RowCount { get; set; }
|
||||
public int PageCount { get; set; }
|
||||
public List<T> list { get; set; }
|
||||
}
|
||||
}
|
@@ -5,7 +5,8 @@ using System.Data;
|
||||
using System.Globalization;
|
||||
using System.Reflection;
|
||||
using System.Security.Cryptography;
|
||||
using Back.Common.ViewModels;
|
||||
using Shared.DTOs;
|
||||
|
||||
|
||||
namespace Back.Common
|
||||
{
|
||||
|
Reference in New Issue
Block a user