13 lines
310 B
C#
13 lines
310 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace BotSharp.OpenAPI.ViewModels.Knowledges;
|
|
|
|
public class SearchGraphKnowledgeRequest
|
|
{
|
|
[JsonPropertyName("query")]
|
|
public string Query { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("method")]
|
|
public string Method { get; set; } = string.Empty;
|
|
}
|