mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-07-10 06:51:28 +08:00
Initial commit
This commit is contained in:
9
Models/Request/Picture/SearchPicturesByTextRequest.cs
Normal file
9
Models/Request/Picture/SearchPicturesByTextRequest.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user