Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Created May 10, 2022 01:49
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 rdelrosario/99bf101715ea2cff24541b30be1e9990 to your computer and use it in GitHub Desktop.
Save rdelrosario/99bf101715ea2cff24541b30be1e9990 to your computer and use it in GitHub Desktop.
public partial class App : Application
{
public static VersionType VersionType => VersionType.Paid;
public App ()
{
InitializeComponent();
MainPage = new SplashPage();
}
}
public enum VersionType
{
Free,
Paid
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment