retroactiune/Retroactiune.WebAPI/Database/IDatabaseSettings.cs

14 lines
No EOL
481 B
C#

namespace Retroactiune.Database
{
/// <summary>
/// Interface for repressing the application's database settings.
/// </summary>
public interface IDatabaseSettings
{
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; }
}
}