From baffd311ce64d5ff2835f5477a779160e9cf489a Mon Sep 17 00:00:00 2001 From: JFronny <33260128+jfronny@users.noreply.github.com> Date: Thu, 19 Nov 2020 19:55:41 +0100 Subject: [PATCH] Make DB info public --- AspNet/SerialDict.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AspNet/SerialDict.cs b/AspNet/SerialDict.cs index 54fb443..4fcf37a 100644 --- a/AspNet/SerialDict.cs +++ b/AspNet/SerialDict.cs @@ -16,11 +16,11 @@ namespace CC_Functions.AspNet /// /// Gets the directory containing databases /// - protected abstract string DatabasesDir { get; } + public abstract string DatabasesDir { get; } /// /// Gets the file name for this database. Must not contain the path /// - protected abstract string DatabaseFileName { get; } + public abstract string DatabaseFileName { get; } /// /// Called when the database is loaded. Use for preparing initial entries ///