using System;
namespace OpenAI;
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Struct, AllowMultiple = true)]
internal class CodeGenSuppressAttribute : Attribute
{
public string Member { get; }
public Type[] Parameters { get; }
public CodeGenSuppressAttribute(string member, params Type[] parameters)
{
Member = member;
Parameters = parameters;
}
}openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Utility/Generator/CodeGenSuppressAttribute.cs
16lines · modepreview