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/UpToolLib/DataStructures/Status.cs
2020-04-08 16:05:09 +02:00

14 lines
211 B
C#

using System;
namespace UpToolLib.DataStructures
{
[Flags]
public enum Status
{
NotInstalled = 1,
Updatable = 2,
Installed = 4,
Local = 8,
All = 15
}
}