You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
411 B
18 lines
411 B
using Refit; |
|
|
|
namespace StabilityMatrix.Core.Models.Api.OpenArt; |
|
|
|
public class OpenArtSearchRequest |
|
{ |
|
[AliasAs("keyword")] |
|
public required string Keyword { get; set; } |
|
|
|
[AliasAs("pageSize")] |
|
public int PageSize { get; set; } = 30; |
|
|
|
/// <summary> |
|
/// 0-based index of the page to retrieve |
|
/// </summary> |
|
[AliasAs("currentPage")] |
|
public int CurrentPage { get; set; } = 0; |
|
}
|
|
|