2021-06-01 11:37:00 +00:00
|
|
|
|
namespace Retroactiune.Settings
|
2021-05-29 17:02:16 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface for repressing the application's MongoDb settings Options.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IMongoDbSettings
|
|
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|