diff --git a/0_Framework/Application/PagedResult.cs b/0_Framework/Application/PagedResult.cs new file mode 100644 index 00000000..c486cbbd --- /dev/null +++ b/0_Framework/Application/PagedResult.cs @@ -0,0 +1,11 @@ +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; + +namespace _0_Framework.Application; + +public class PagedResult +{ + public int TotalCount { get; set; } + public List List { get; set; } + public TMeta? Meta { get; set; } +} \ No newline at end of file