TapUUID.cs 162 B

123456789
  1. namespace TapSDK.Core
  2. {
  3. public class TapUUID
  4. {
  5. public static string UUID(){
  6. return System.Guid.NewGuid().ToString();
  7. }
  8. }
  9. }