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.
 
 
 

24 lines
401 B

  1. using System;
  2. namespace CI.WSANative.Social
  3. {
  4. public static class WSANativeSocial
  5. {
  6. public static void ShowAppStoreDescriptionPage(string appId)
  7. {
  8. }
  9. public static void ShowAppStoreReviewPage(string appId)
  10. {
  11. }
  12. public static void ComposeEmail(string emailAddress)
  13. {
  14. }
  15. public static void Share<T>(string title, string description, T content)
  16. {
  17. }
  18. }
  19. }