openai/openai-dotnet

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/customize-openairesponsescontext-attribute

Branches

Tags

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

Clone

HTTPS

Download ZIP

OpenAI/src/Generated/Internal/CodeGenSuppressAttribute.cs

22lines · modecode

1// <auto-generated/>
2
3#nullable disable
4
5using System;
6
7namespace 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}