using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace XUnity.AutoTranslator.Plugin.Core.Constants
{
///
/// Class providing information about the plugin.
///
public static class PluginData
{
///
/// Gets a globally unique identifier.
///
public const string Identifier = "gravydevsupreme.xunity.autotranslator";
///
/// Gets a friendly name for the plugin.
///
public const string Name = "XUnity Auto Translator";
///
/// Gets the version of the plugin.
///
public const string Version = "3.1.0";
}
}