Files
Regression-Testing/SpeckleAutomateDotnetExample/FunctionInputs.cs
T
Claire Kuang 739befc3fa
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
cleans and improves logic to handle no appid objects
also changes assumptions that in a single commit, multiple objects can have the same appid and same speckle id
2024-02-02 01:58:54 +00:00

15 lines
400 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;
}