10 lines
219 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace Microsoft.AI.DevTeam;
public class QdrantOptions
{
[Required]
public string Endpoint { get; set; }
[Required]
public int VectorSize { get; set; }
}