16 lines
345 B
C#
16 lines
345 B
C#
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace _0_Framework.Application;
|
|
|
|
|
|
public class PagedResult<T> where T : class
|
|
{
|
|
public int TotalCount { get; set; }
|
|
public List<T> List { get; set; }
|
|
}
|
|
public class PagedResult<T,TMeta>:PagedResult<T> where T : class
|
|
{
|
|
public TMeta? Meta { get; set; }
|
|
}
|