Skip to content

Instantly share code, notes, and snippets.

@wtuts
Created June 22, 2014 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wtuts/e49cdd68706938762003 to your computer and use it in GitHub Desktop.
Save wtuts/e49cdd68706938762003 to your computer and use it in GitHub Desktop.
public class AppSettings
{
private static bool displayAds = true;
private static bool isAdBlockerActive = false;
public static bool ISADBLOCKERACTIVE
{
get
{
return isAdBlockerActive;
}
set
{
isAdBlockerActive = value;
}
}
public static bool DISPLAYADS
{
get
{
return displayAds;
}
set
{
displayAds = value;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment