BotSharp/src/Plugins/BotSharp.Plugin.Qdrant/Models/RecoverFromSnapshotResponse.cs

16 lines
339 B
C#
Raw Normal View History

2025-03-12 21:33:20 +00:00
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; }
}