Files
SabreTools.Serialization/SabreTools.Wrappers/ExtensionAttribute.cs

10 lines
225 B
C#
Raw Permalink Normal View History

2024-11-15 22:22:22 -05:00
#if NET20
namespace System.Runtime.CompilerServices
{
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)]
2026-03-24 19:17:25 -04:00
internal sealed class ExtensionAttribute : Attribute { }
2024-11-15 22:22:22 -05:00
}
#endif