選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

9 行
204B

  1. namespace Services
  2. {
  3. public class ParametresQdrantService
  4. {
  5. public string Qdrant_URL { get; set; } = "localhost:6334";
  6. public bool Qdrant_IsHttps { get; set; } = false;
  7. }
  8. }