AI-Studio/app/MindWork AI Studio/Tools/Rust/QdrantInfo.cs

17 lines
383 B
C#
Raw Normal View History

namespace AIStudio.Tools.Rust;
/// <summary>
/// The response of the Qdrant information request.
/// </summary>
public readonly record struct QdrantInfo
{
public string Path { get; init; }
public int PortHttp { get; init; }
public int PortGrpc { get; init; }
public string Fingerprint { get; init; }
public string ApiToken { get; init; }
}