You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel.Qdrant/Models/Responces/CreateIndexResponse.cs

16 lines
383 B

namespace ZeroLevel.Qdrant.Models.Responces
{
public sealed class IndexOperation
{
public long operation_id { get; set; }
public string status { get; set; }
}
public sealed class CreateIndexResponse
{
public IndexOperation result { get; set; }
public string status { get; set; }
public float time { get; set; }
}
}

Powered by TurnKey Linux.