mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 22:03:41 +01:00
8 lines
259 B
C#
8 lines
259 B
C#
using System;
|
|
|
|
using Dalamud.Utility;
|
|
|
|
namespace Dalamud.Plugin;
|
|
|
|
[Api10ToDo("Refactor into an interface, add wrappers for OpenMainUI and OpenConfigUI")]
|
|
public record InstalledPluginState(string Name, string InternalName, bool IsLoaded, Version Version);
|