// Copyright (c) Microsoft Corporation. All rights reserved. // SourceGeneratorFunctionContract.cs namespace AutoGen.SourceGenerator; internal class SourceGeneratorFunctionContract { public string? Namespace { get; set; } public string? ClassName { get; set; } public string? Name { get; set; } public string? Description { get; set; } public string? ReturnDescription { get; set; } public SourceGeneratorParameterContract[]? Parameters { get; set; } public string? ReturnType { get; set; } } internal class SourceGeneratorParameterContract { public string? Name { get; set; } public string? Description { get; set; } public string? JsonType { get; set; } public string? JsonItemType { get; set; } public string? Type { get; set; } public bool IsOptional { get; set; } public string? DefaultValue { get; set; } }