mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-23 08:36:27 +00:00
11 lines
200 B
C#
11 lines
200 B
C#
|
|
namespace AIStudio.Settings;
|
||
|
|
|
||
|
|
public enum SettingsWriteBlockReason
|
||
|
|
{
|
||
|
|
NONE,
|
||
|
|
VERSION_MISSING,
|
||
|
|
VERSION_UNKNOWN,
|
||
|
|
VERSION_NEWER_THAN_APP,
|
||
|
|
FILE_UNREADABLE,
|
||
|
|
CURRENT_VERSION_INVALID,
|
||
|
|
}
|