mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-13 07:01:03 +08:00
10 lines
283 B
C#
10 lines
283 B
C#
namespace Foxel.Models.Request.Picture;
|
|
|
|
public record 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;
|
|
}
|