// Copyright (c) Microsoft. All rights reserved.
namespace ChatWithAgent.Configuration;
///
/// Azure AI Search service settings.
///
public sealed class AzureAISearchConfig
{
///
/// Configuration section name.
///
public const string ConfigSectionName = "AzureAISearch";
///
/// The name of the connection string of Azure AI Search service.
///
public const string ConnectionStringName = "AzureAISearch";
}