From 5f353982c2175025fc186f4296fa89e42c04cb4f Mon Sep 17 00:00:00 2001 From: Steve Friedl Date: Tue, 15 Aug 2023 08:14:18 -0700 Subject: [PATCH] Removed "sealed" from OptionAttribute --- src/CommandLine/OptionAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CommandLine/OptionAttribute.cs b/src/CommandLine/OptionAttribute.cs index 6ae51dac..2727b5a8 100644 --- a/src/CommandLine/OptionAttribute.cs +++ b/src/CommandLine/OptionAttribute.cs @@ -10,7 +10,7 @@ namespace CommandLine /// Models an option specification. /// [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)] - public sealed class OptionAttribute : BaseAttribute + public class OptionAttribute : BaseAttribute { private readonly string longName; private readonly string shortName;