using System.ComponentModel.DataAnnotations; /// /// This class describes the user specified variables that the function wants to work with. /// /// This class is used to generate a JSON Schema to ensure that the user provided values /// are valid and match the required schema. public struct FunctionInputs { /// /// The name of the branch to compare against. This should be the full branch path. /// [Required] public string DiffBranch; }