mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
15 lines
429 B
C#
15 lines
429 B
C#
using System.Collections.Immutable;
|
|
|
|
namespace NadekoBot.Medusa;
|
|
|
|
public sealed record ResolvedMedusa(
|
|
WeakReference<MedusaAssemblyLoadContext> LoadContext,
|
|
IImmutableList<ModuleInfo> ModuleInfos,
|
|
IImmutableList<SnekInfo> SnekInfos,
|
|
IMedusaStrings Strings,
|
|
Dictionary<Type, TypeReader> TypeReaders,
|
|
IReadOnlyCollection<ICustomBehavior> Execs
|
|
)
|
|
{
|
|
public required IIocModule IocModule { get; set; }
|
|
} |