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