ScriptStack 1.0.5
Loading...
Searching...
No Matches
Plugin.cs
Go to the documentation of this file.
1using System.Reflection;
2
4{
5 public class Plugin
6 {
7 public string Directory { get; set; } = "";
8 public PluginLoadContext? LoadContext { get; set; }
9 public Assembly? Assembly { get; set; }
10 public object? Instance { get; set; }
11 }
12}
PluginLoadContext? LoadContext
Definition Plugin.cs:8