Files
Regression-Testing/SpeckleAutomateDotnetExample/FunctionInputs.cs
T
Claire Kuang b1872be922
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
renames to SpeckleAutomateDotnetExample
2024-01-30 21:03:28 +00:00

15 lines
402 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 double Tolerance;
//public string Exclusions;
}