mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 14:49:06 +00:00
16 lines
253 B
C#
16 lines
253 B
C#
namespace AIStudio.Settings;
|
|
|
|
/// <summary>
|
|
/// The version of the settings file. Allows us to upgrade the settings,
|
|
/// in case a new version is available.
|
|
/// </summary>
|
|
public enum Version
|
|
{
|
|
UNKNOWN,
|
|
|
|
V1,
|
|
V2,
|
|
V3,
|
|
V4,
|
|
V5,
|
|
} |