2021-06-11 20:17:03 +00:00
|
|
|
|
namespace Retroactiune.Database
|
2021-05-29 17:02:16 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-06-11 20:17:03 +00:00
|
|
|
|
/// DatabaseSettingsOptions acts as a model for the database settings, it is used in conjunction with the built in
|
|
|
|
|
/// ASP .NET Core configuration options.
|
2021-05-29 17:02:16 +00:00
|
|
|
|
/// </summary>
|
2021-06-11 20:17:03 +00:00
|
|
|
|
public class DatabaseSettings : IDatabaseSettings
|
2021-05-29 17:02:16 +00:00
|
|
|
|
{
|
|
|
|
|
public string FeedbackCollectionName { get; set; }
|
|
|
|
|
public string TokensCollectionName { get; set; }
|
|
|
|
|
public string FeedbackReceiverCollectionName { get; set; }
|
|
|
|
|
public string ConnectionString { get; set; }
|
|
|
|
|
public string DatabaseName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|