2021-06-21 14:46:44 +00:00
|
|
|
|
namespace Retroactiune.Core.Interfaces
|
2021-05-29 17:02:16 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-06-11 20:17:03 +00:00
|
|
|
|
/// Interface for repressing the application's database settings.
|
2021-05-29 17:02:16 +00:00
|
|
|
|
/// </summary>
|
2021-06-11 20:17:03 +00:00
|
|
|
|
public interface 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; }
|
|
|
|
|
}
|
|
|
|
|
}
|