Make DB info public

This commit is contained in:
JFronny 2020-11-19 19:55:41 +01:00
parent 5b5e359efb
commit baffd311ce
1 changed files with 2 additions and 2 deletions

View File

@ -16,11 +16,11 @@ namespace CC_Functions.AspNet
/// <summary>
/// Gets the directory containing databases
/// </summary>
protected abstract string DatabasesDir { get; }
public abstract string DatabasesDir { get; }
/// <summary>
/// Gets the file name for this database. Must not contain the path
/// </summary>
protected abstract string DatabaseFileName { get; }
public abstract string DatabaseFileName { get; }
/// <summary>
/// Called when the database is loaded. Use for preparing initial entries
/// </summary>