18 lines
468 B
C#
18 lines
468 B
C#
namespace ChatApi
|
|
{
|
|
public class DomvsDatabaseSettings
|
|
{
|
|
public string ConnectionString { get; set; } = null!;
|
|
|
|
public string DatabaseName { get; set; } = null!;
|
|
|
|
public string SharepointCollectionName { get; set; } = null!;
|
|
|
|
public string UserDataName { get; set; } = null!;
|
|
|
|
public string ChatBotRHCollectionName { get; set; } = null!;
|
|
|
|
public string ClassifierCollectionName { get; set; } = null!;
|
|
}
|
|
}
|