microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v2.0.0-preview.5

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.AI/Annotations/ParamAttribute.cs

15lines · modecode

1namespace Microsoft.Teams.AI.Annotations;
2
3[AttributeUsage(AttributeTargets.Parameter, Inherited = true)]
4public class ParamAttribute(string? name = null) : Attribute
5{
6 /// <summary>
7 /// the parameter name
8 /// </summary>
9 public string? Name { get; private set; } = name;
10
11 /// <summary>
12 /// the parameter description
13 /// </summary>
14 public string? Description { get; private set; }
15}