using CurrencyAlert.System.cs; using Dalamud.Game; using Dalamud.Game.ClientState; using Dalamud.IoC; using Dalamud.Plugin; using Dalamud.Plugin.Services; namespace CurrencyAlert; public class Service { [PluginService] public static IDalamudPluginInterface PluginInterface { get; private set; } = null!; [PluginService] public static IFramework Framework { get; private set; } = null!; [PluginService] public static IClientState ClientState { get; private set; } = null!; public static Configuration Configuration { get; set; } = null!; public static CurrencyTracker CurrencyTracker { get; set; } = null!; }