Files
SethDiscordBot/Plugins/CppModuleDemo/InternalSettings.cs

10 lines
307 B
C#

using CppCompatibilityModule;
using CppCompatibilityModule.Extern;
namespace CppModuleDemo;
internal static class InternalSettings
{
internal static ExternalApplicationHandler? ExternalApplicationHandler { get; set; } = null;
internal static Guid DemoModuleInternalId { get; set; } = Guid.Empty;
}