RobotNet/RobotNet.Shares/SearchResult.cs
2025-10-15 15:15:53 +07:00

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; } = [];
}