openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.0.0-beta.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/Utility/Polyfill/System.Runtime.CompilerServices.RequiredMemberAttribute.cs

8lines · modecode

1#if !NET7_0_OR_GREATER
2
3namespace System.Runtime.CompilerServices;
4
5[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = false, Inherited = false)]
6internal sealed class RequiredMemberAttribute : Attribute { }
7
8#endif // !NET7_0_OR_GREATER
9