namespace RobotNet.Shares; public class SearchResult { public int Total { get; set; } = 0; public int Page { get; set; } = 1; public int Size { get; set; } = 10; public IEnumerable Items { get; set; } = []; }