add changes
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace server.Persistence
|
||||
{
|
||||
public class DatabaseSettings : IDatabaseSettings
|
||||
{
|
||||
public string? ConnectionString { get; set; }
|
||||
public string? DatabaseName { get; set; }
|
||||
public string? SeasonsCollection { get; set; }
|
||||
public string? EpisodesCollection { get; set; }
|
||||
public string? CharactersCollection { get; set; }
|
||||
public string? QuotesCollection { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user