mirror of
https://github.com/Stone-Red-Code/Markdowser.git
synced 2026-09-04 00:56:13 +02:00
12 lines
464 B
C#
12 lines
464 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace Markdowser.Utilities;
|
|
|
|
internal static class Configuration
|
|
{
|
|
public static string DownloadPath => Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
|
|
public static string ApplicationDataPath => Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), nameof(Markdowser));
|
|
|
|
public static string SettingsFilePath => Path.Combine(ApplicationDataPath, "settings.json");
|
|
} |