Add PagedViewModel (#12955)
Co-authored-by: Zeegaan <nge@umbraco.dk>
(cherry picked from commit 9a2ead4381)
This commit is contained in:
committed by
Sebastiaan Janssen
parent
5500f87223
commit
7d0be19199
@@ -0,0 +1,8 @@
|
||||
namespace Umbraco.Cms.ManagementApi.ViewModels.Pagination;
|
||||
|
||||
public class PagedViewModel<T>
|
||||
{
|
||||
public long Total { get; set; }
|
||||
|
||||
public IEnumerable<T> Items { get; set; } = Enumerable.Empty<T>();
|
||||
}
|
||||
Reference in New Issue
Block a user