9 lines
271 B
C#
9 lines
271 B
C#
using System.Reflection;
|
|
|
|
namespace HopFrame.Web.Plugins.Events;
|
|
|
|
internal sealed class PluginEventContainer {
|
|
public required MethodInfo Handler { get; init; }
|
|
public required Type EventType { get; init; }
|
|
public required bool IsAwaitable { get; init; }
|
|
} |