BotSharp/src/Infrastructure/BotSharp.Abstraction/Functions/Models/ParameterPropertyDef.cs

8 lines
181 B
C#
Raw Normal View History

2023-09-27 20:49:44 +00:00
namespace BotSharp.Abstraction.Functions.Models;
public class ParameterPropertyDef
{
public string Type { get; set; } = "string";
public string Description { get; set; }
}