13 lines
206 B
C#
13 lines
206 B
C#
using System;
|
|
|
|
namespace WebsitePanel.Providers
|
|
{
|
|
[Serializable]
|
|
public enum AppPoolState
|
|
{
|
|
Unknown = 0,
|
|
Start = 1,
|
|
Stop = 2,
|
|
Recycle = 3
|
|
}
|
|
}
|