2021-06-21 14:46:44 +00:00
|
|
|
|
using Retroactiune.Core.Interfaces;
|
|
|
|
|
|
|
|
|
|
namespace Retroactiune.Infrastructure
|
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
|
|
|
|
{
|
2021-07-11 13:26:01 +00:00
|
|
|
|
public string FeedbacksCollectionName { get; set; }
|
2021-05-29 17:02:16 +00:00
|
|
|
|
public string TokensCollectionName { get; set; }
|
2021-07-11 13:26:01 +00:00
|
|
|
|
public string FeedbackReceiversCollectionName { get; set; }
|
2021-05-29 17:02:16 +00:00
|
|
|
|
public string ConnectionString { get; set; }
|
|
|
|
|
public string DatabaseName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|