17 lines
390 B
C#
17 lines
390 B
C#
namespace ChatApi
|
|
{
|
|
public class DomvsDatabaseSettings
|
|
{
|
|
public string ConnectionString { get; set; } = null!;
|
|
|
|
public string DatabaseName { get; set; } = null!;
|
|
|
|
public string TextCollectionName { get; set; } = null!;
|
|
|
|
public string UserDataName { get; set; } = null!;
|
|
|
|
public string ProjectCollectionName { get; set; } = null!;
|
|
|
|
}
|
|
}
|