Added data structure for enabled plugins

This commit is contained in:
Thorsten Sommer 2025-03-23 12:53:42 +01:00
parent c375f11441
commit 08bfafa73d
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -36,6 +36,11 @@ public sealed class Data
/// </summary> /// </summary>
public List<Profile> Profiles { get; init; } = []; public List<Profile> Profiles { get; init; } = [];
/// <summary>
/// List of enabled plugins.
/// </summary>
public List<Guid> EnabledPlugins { get; set; } = [];
/// <summary> /// <summary>
/// The next provider number to use. /// The next provider number to use.
/// </summary> /// </summary>