mirror of https://github.com/ogoun/Zero.git
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.
17 lines
405 B
17 lines
405 B
namespace ZeroLevel.Qdrant.Models.Responces
|
|
{
|
|
public sealed class PointsResponse
|
|
{
|
|
public Point[] result { get; set; }
|
|
public string status { get; set; }
|
|
public float time { get; set; }
|
|
}
|
|
|
|
public sealed class PointResponse
|
|
{
|
|
public Point result { get; set; }
|
|
public string status { get; set; }
|
|
public float time { get; set; }
|
|
}
|
|
}
|