openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
OpenAI/src/Generated/Internal/CodeGenSuppressAttribute.cs
22lines · modecode
| 1 | // <auto-generated/> |
| 2 | |
| 3 | #nullable disable |
| 4 | |
| 5 | using System; |
| 6 | |
| 7 | namespace Microsoft.TypeSpec.Generator.Customizations |
| 8 | { |
| 9 | [AttributeUsage((AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Struct), AllowMultiple = true)] |
| 10 | internal partial class CodeGenSuppressAttribute : Attribute |
| 11 | { |
| 12 | public CodeGenSuppressAttribute(string member, params Type[] parameters) |
| 13 | { |
| 14 | Member = member; |
| 15 | Parameters = parameters; |
| 16 | } |
| 17 | |
| 18 | public string Member { get; } |
| 19 | |
| 20 | public Type[] Parameters { get; } |
| 21 | } |
| 22 | } |