mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-22 08:15:07 +00:00
Adds a plugin management view Implements a basic plugin as an example Closes #361
12 lines
277 B
C#
12 lines
277 B
C#
using Daybreak.Attributes;
|
|
using Daybreak.Services.Plugins.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsIgnore]
|
|
public sealed class PluginsServiceOptions
|
|
{
|
|
public List<PluginEntry> EnabledPlugins { get; set; } = new();
|
|
}
|