AuthorBuddy/Models/Constants.cs

15 lines
297 B
C#
Raw Permalink Normal View History

2026-05-14 12:31:35 +02:00
namespace AuthorBuddy.Web.Models;
public static class Constants
{
public static readonly string[] SubFolders = {
"00_Drafts",
"01_Fakten/Personen",
"01_Fakten/Orte",
"02_Archive",
"Exports"
};
2026-05-20 06:12:54 +02:00
public const string DbFile = "author_brain.db";
2026-05-14 12:31:35 +02:00
}