mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
5 lines
147 B
C#
5 lines
147 B
C#
using System;
|
|
|
|
namespace Dalamud.Plugin;
|
|
|
|
public record InstalledPluginState(string Name, string InternalName, bool IsLoaded, Version Version);
|