ref: project structure
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace mws.backend.dotnet.application.Common;
|
||||
|
||||
public class PagedResult<T>
|
||||
{
|
||||
public List<T> Items { get; init; } = [];
|
||||
public int TotalCount { get; init; }
|
||||
public int Page { get; init; }
|
||||
public int PageSize { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user