Last active
June 21, 2020 21:28
-
-
Save sotirisf/1ba7d8fe518594282e0974beff1224c6 to your computer and use it in GitHub Desktop.
CDF Groups and Priorities
This file contains hidden or 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
| public static class CdfPriority | |
| { | |
| public static int First => 1; | |
| public static int Medium => 10; | |
| public static int Last => 100; | |
| public static int LastOfLast => 9999; | |
| } | |
| public static class CdfGroup | |
| { | |
| public static int Essentials => 1; | |
| public static int SiteWide => 2; | |
| public static int PartiallyUsed => 3; | |
| public static int Section => 4; | |
| public static int Extras => 5; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment