mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-12-04 12:42:47 +01:00
11 lines
136 B
C#
11 lines
136 B
C#
namespace DHT.Desktop.Discord;
|
|
|
|
enum SettingsJsonResult {
|
|
Success,
|
|
AlreadySet,
|
|
FileNotFound,
|
|
ReadError,
|
|
InvalidJson,
|
|
WriteError
|
|
}
|