From 983dd41ba1535b9f82ebe54248631a55d54f5ef7 Mon Sep 17 00:00:00 2001 From: Mikhail <99481254+DCFApixels@users.noreply.github.com> Date: Sat, 2 Mar 2024 18:33:49 +0800 Subject: [PATCH] fix --- src/AutoRunners/BindWithRunnerAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AutoRunners/BindWithRunnerAttribute.cs b/src/AutoRunners/BindWithRunnerAttribute.cs index 978c41a..4facf65 100644 --- a/src/AutoRunners/BindWithRunnerAttribute.cs +++ b/src/AutoRunners/BindWithRunnerAttribute.cs @@ -1,6 +1,6 @@ using System; [AttributeUsage(AttributeTargets.Interface, Inherited = false, AllowMultiple = false)] -sealed class BindWithRunnerAttribute : Attribute +public sealed class BindWithRunnerAttribute : Attribute { public readonly Type runnerType; public BindWithRunnerAttribute(Type runnerType)