20 lines
367 B
C#
20 lines
367 B
C#
using CloudBuilder.Core.Authorization;
|
|
|
|
namespace CloudBuilder.Core.Service
|
|
{
|
|
[TypeScript]
|
|
public class SearchCriteriaResultData
|
|
{
|
|
public int Limit { get; set; }
|
|
|
|
public int Page { get; set; }
|
|
|
|
public int Total { get; set; }
|
|
|
|
public string? Sql { get; set; }
|
|
|
|
public string? ErrorMessage { get; set; }
|
|
|
|
}
|
|
}
|