-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
70 changed files
with
6,130 additions
and
786 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,48 @@ | ||
namespace Mastersign.Bench | ||
{ | ||
/// <summary> | ||
/// The enumeration of possible status icon types of an app. | ||
/// </summary> | ||
public enum AppStatusIcon | ||
{ | ||
/// <summary> | ||
/// No status icon. The app is not activated, not installed, and not cached. | ||
/// </summary> | ||
None, | ||
|
||
/// <summary> | ||
/// The app is activated and the status of the app is OK. | ||
/// </summary> | ||
OK, | ||
|
||
/// <summary> | ||
/// There is an info message, regarding this app. | ||
/// </summary> | ||
Info, | ||
|
||
/// <summary> | ||
/// The app is not activated, but is is cached. | ||
/// </summary> | ||
Cached, | ||
|
||
/// <summary> | ||
/// The app is not activated, but installed. | ||
/// </summary> | ||
Tolerated, | ||
|
||
/// <summary> | ||
/// The app is explicitly deactivated. | ||
/// </summary> | ||
Blocked, | ||
|
||
/// <summary> | ||
/// There is a pending task, regarding this app. | ||
/// </summary> | ||
Task, | ||
|
||
/// <summary> | ||
/// There is an error message, regarding this app. | ||
/// </summary> | ||
Warning | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.