openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Utility/Polyfill/System.Runtime.CompilerServices.RequiredMemberAttribute.cs
8lines · modecode
| 1 | #if !NET7_0_OR_GREATER |
| 2 | |
| 3 | namespace System.Runtime.CompilerServices; |
| 4 | |
| 5 | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = false, Inherited = false)] |
| 6 | internal sealed class RequiredMemberAttribute : Attribute { } |
| 7 | |
| 8 | #endif // !NET7_0_OR_GREATER |
| 9 | |