Light12306/ChatRoomServer.Db/Entities/PagedData.cs

17 lines
271 B
C#
Raw Normal View History

2015-07-15 20:55:09 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ChatRoomServer.Db.Entities
{
public class PagedData<T>
{
public long TotalCount { get; set; }
public List<T> Data { get; set; }
}
}