mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
12 lines
280 B
C#
12 lines
280 B
C#
using Daybreak.Shared.Attributes;
|
|
using Daybreak.Services.Plugins.Models;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsIgnore]
|
|
[OptionsSynchronizationIgnore]
|
|
internal sealed class PluginsServiceOptions
|
|
{
|
|
public List<PluginEntry> EnabledPlugins { get; set; } = [];
|
|
}
|