10 lines
235 B
C#
10 lines
235 B
C#
namespace RobotNet.Shares;
|
|
|
|
public class SearchResult<T>
|
|
{
|
|
public int Total { get; set; } = 0;
|
|
public int Page { get; set; } = 1;
|
|
public int Size { get; set; } = 10;
|
|
public IEnumerable<T> Items { get; set; } = [];
|
|
}
|