add PagedResult generic class to support paginated responses

This commit is contained in:
MahanCh
2025-08-04 15:17:14 +03:30
parent 08bf8395c4
commit 6cec0e39ec

View File

@@ -0,0 +1,11 @@
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace _0_Framework.Application;
public class PagedResult<T,TMeta>
{
public int TotalCount { get; set; }
public List<T> List { get; set; }
public TMeta? Meta { get; set; }
}