mirror of
https://github.com/AlexMacocian/Plumsy.git
synced 2026-07-15 14:59:30 +00:00
14 lines
241 B
C#
14 lines
241 B
C#
using System.Reflection;
|
|
|
|
namespace Plum.Net.Models;
|
|
|
|
public sealed class Plugin
|
|
{
|
|
public PluginEntry PluginEntry { get; init; } = default!;
|
|
public Assembly Assembly { get; init; } = default!;
|
|
|
|
internal Plugin()
|
|
{
|
|
}
|
|
}
|