2022-06-21 19:04:11 -05:00
|
|
|
namespace server.Persistence
|
2022-06-19 16:42:35 -05:00
|
|
|
{
|
|
|
|
|
public interface IDatabaseSettings
|
|
|
|
|
{
|
|
|
|
|
string? ConnectionString { get; set; }
|
|
|
|
|
string? DatabaseName { get; set; }
|
|
|
|
|
string? SeasonsCollection { get; set; }
|
|
|
|
|
string? EpisodesCollection { get; set; }
|
|
|
|
|
string? CharactersCollection { get; set; }
|
|
|
|
|
string? QuotesCollection { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|