This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
UpTool2/UpTool2/Status.cs
2019-11-11 15:48:49 +01:00

12 lines
169 B
C#

namespace UpTool2
{
public enum Status
{
Not_Installed = 1,
Updatable = 2,
Installed = 4,
Local = 8,
All = 15
}
}