using Dalamud.IoC; using Dalamud.Plugin; using Dalamud.Plugin.Services; namespace MSQProgress; internal class Service { [PluginService] internal static IDalamudPluginInterface Interface { get; private set; } = null!; [PluginService] internal static IClientState ClientState { get; private set; } = null!; [PluginService] internal static ICommandManager CommandManager { get; private set; } = null!; [PluginService] internal static IDataManager DataManager { get; private set; } = null!; [PluginService] internal static IPluginLog PluginLog { get; private set; } = null!; [PluginService] internal static IUnlockState UnlockState { get; private set; } = null!; }