mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-27 23:59:48 +00:00
10 lines
104 B
C#
10 lines
104 B
C#
|
namespace Build.Commands;
|
||
|
|
||
|
public enum PrepareAction
|
||
|
{
|
||
|
NONE,
|
||
|
|
||
|
PATCH,
|
||
|
MINOR,
|
||
|
MAJOR,
|
||
|
}
|