You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 rivejä
226 B

  1. using System;
  2. namespace SUISSEngine
  3. {
  4. public interface IAppInfo
  5. {
  6. string GetApplicationId();
  7. string GetApplicationUrlScheme();
  8. string GetApplicationVersion();
  9. int GetApplicationBuildNumber();
  10. }
  11. }