openai/openai-dotnet

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.1.0-beta.2

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/Utility/Generator/CodeGenMemberAttribute.cs

17lines · modeblame

9f9f2936Jose Arriaga Maldonado2 years ago1#nullable enable
2
3using System;
4
5namespace OpenAI;
6
7[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
22ab606bStephen Toub2 years ago8internal sealed class CodeGenMemberAttribute : CodeGenTypeAttribute
9f9f2936Jose Arriaga Maldonado2 years ago9{
10public CodeGenMemberAttribute() : base(null)
11{
12}
13
14public CodeGenMemberAttribute(string originalName) : base(originalName)
15{
16}
17}