14 lines
297 B
C#
14 lines
297 B
C#
namespace AuthorBuddy.Web.Models;
|
|
|
|
public static class Constants
|
|
{
|
|
public static readonly string[] SubFolders = {
|
|
"00_Drafts",
|
|
"01_Fakten/Personen",
|
|
"01_Fakten/Orte",
|
|
"02_Archive",
|
|
"Exports"
|
|
};
|
|
|
|
public const string DbFile = "author_brain.db";
|
|
}
|