15 lines
291 B
C#
15 lines
291 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WebsitePanel.Providers.Virtualization
|
|
{
|
|
public enum AutomaticStopAction
|
|
{
|
|
Undefined = 100,
|
|
TurnOff = 0,
|
|
Save = 1,
|
|
ShutDown = 2,
|
|
}
|
|
}
|