mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:49:07 +00:00
10 lines
127 B
C#
10 lines
127 B
C#
|
namespace AIStudio.Settings;
|
||
|
|
||
|
public enum UpdateBehavior
|
||
|
{
|
||
|
NO_CHECK,
|
||
|
ONCE_STARTUP,
|
||
|
HOURLY,
|
||
|
DAILY,
|
||
|
WEEKLY,
|
||
|
}
|