Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Common/Models/PageModel.cs

20 lines
339 B
C#
Raw Normal View History

2021-10-11 21:50:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Common.Models
{
2022-04-06 22:22:45 +08:00
public class PageModel<T>
2021-10-11 21:50:50 +08:00
{
2022-04-06 22:22:45 +08:00
public int Total { get; set; }
public T Data { get; set; }
}
2021-10-11 21:50:50 +08:00
2022-04-06 22:22:45 +08:00
public class PageModel : PageModel<object>
{
2021-10-11 21:50:50 +08:00
}
}