Skip to content

Instantly share code, notes, and snippets.

@sotirisf
Last active June 21, 2020 21:28
Show Gist options
  • Select an option

  • Save sotirisf/1ba7d8fe518594282e0974beff1224c6 to your computer and use it in GitHub Desktop.

Select an option

Save sotirisf/1ba7d8fe518594282e0974beff1224c6 to your computer and use it in GitHub Desktop.
CDF Groups and Priorities
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