-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppConstants.cs
More file actions
26 lines (25 loc) · 988 Bytes
/
Copy pathAppConstants.cs
File metadata and controls
26 lines (25 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Last comment Update 2026-08-21 09:20
namespace c2flux
{
public static class AppConstants
{
// Central source of truth for application identity and external URLs.
public const string ApplicationName = "c² flux";
public const string FullApplicationName =
"c² flux - Tree Scanner";
public const string ShellContextMenuText =
"c² flux: Start scan";
public const string CopyrightText =
"Copyright © Daniel Capilla";
public const string GitHubRepositoryUrl =
"https://github.com/UncleRiot/c2flux";
public const string GitHubLatestReleaseApiUrl =
"https://api.github.com/repos/UncleRiot/c2flux/releases/latest";
public const string HelpUrl =
"https://github.com/UncleRiot/c2flux/wiki";
public const string KoFiUrl =
"https://ko-fi.com/uncleriot";
public const string GitHubUserAgent =
"c2flux";
}
}