BotSharp/src/Plugins/BotSharp.Plugin.Qdrant/Models/RecoverFromSnapshotResponse.cs
2025-03-12 16:33:20 -05:00

16 lines
339 B
C#

using System.Text.Json.Serialization;
namespace BotSharp.Plugin.Qdrant.Models;
public class RecoverFromSnapshotResponse
{
[JsonPropertyName("time")]
public decimal Time { get; set; }
[JsonPropertyName("status")]
public string Status { get; set; }
[JsonPropertyName("result")]
public bool Result { get; set; }
}