You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- // 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; }
-
- }
|