mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-12 19:41:03 +08:00
10 lines
282 B
C#
10 lines
282 B
C#
namespace Foxel.Models.Request.Picture;
|
|
|
|
public class SearchPicturesByTextRequest
|
|
{
|
|
public string Query { get; set; } = string.Empty;
|
|
public int Page { get; set; } = 1;
|
|
public int PageSize { get; set; } = 8;
|
|
public double SimilarityThreshold { get; set; } = 0.36;
|
|
}
|