Files
Regression-Testing/SpeckleAutomateDotnetExample/FunctionInputs.cs
T
Claire Kuang cc84d5c4a1 Initial commit
2024-01-28 14:26:24 +00:00

13 lines
376 B
C#

using System.ComponentModel.DataAnnotations;
/// <summary>
/// This class describes the user specified variables that the function wants to work with.
/// </summary>
/// This class is used to generate a JSON Schema to ensure that the user provided values
/// are valid and match the required schema.
struct FunctionInputs
{
[Required]
public string SpeckleTypeToCount;
}