openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Generated/Internal/CodeGenTypeAttribute.cs
19lines · modecode
| 1 | // <auto-generated/> |
| 2 | |
| 3 | #nullable disable |
| 4 | |
| 5 | using System; |
| 6 | |
| 7 | namespace OpenAI |
| 8 | { |
| 9 | [AttributeUsage((AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Struct))] |
| 10 | internal partial class CodeGenTypeAttribute : Attribute |
| 11 | { |
| 12 | public CodeGenTypeAttribute(string originalName) |
| 13 | { |
| 14 | OriginalName = originalName; |
| 15 | } |
| 16 | |
| 17 | public string OriginalName { get; } |
| 18 | } |
| 19 | } |
| 20 | |