25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

16 satır
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. }