Files

13 lines
372 B
C#

namespace server.Persistence
{
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; }
}
}