mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
12 lines
274 B
C#
12 lines
274 B
C#
namespace Dalamud.Configuration;
|
|
|
|
/// <summary>
|
|
/// Configuration to store settings for a dalamud plugin.
|
|
/// </summary>
|
|
public interface IPluginConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets configuration version.
|
|
/// </summary>
|
|
int Version { get; set; }
|
|
}
|