MacService.cs 169 B

1234567891011
  1. namespace fis
  2. {
  3. public class MacService : IPlatformService
  4. {
  5. public string GetPlatformName()
  6. {
  7. return "MacOS-X64";
  8. }
  9. }
  10. }