PluginData.cs 723 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace XUnity.AutoTranslator.Plugin.Core.Constants
  6. {
  7. /// <summary>
  8. /// Class providing information about the plugin.
  9. /// </summary>
  10. public static class PluginData
  11. {
  12. /// <summary>
  13. /// Gets a globally unique identifier.
  14. /// </summary>
  15. public const string Identifier = "gravydevsupreme.xunity.autotranslator";
  16. /// <summary>
  17. /// Gets a friendly name for the plugin.
  18. /// </summary>
  19. public const string Name = "XUnity Auto Translator";
  20. /// <summary>
  21. /// Gets the version of the plugin.
  22. /// </summary>
  23. public const string Version = "3.1.0";
  24. }
  25. }