// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE.md file in the project root for full license information. // public class HelperFunctionParameterDescriptionAttribute : Attribute { public HelperFunctionParameterDescriptionAttribute() { } public HelperFunctionParameterDescriptionAttribute(string? description = null) { Description = description; } public string? Description { get; set; } }