microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v2.0.4

Branches

Tags

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

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.AI/Annotations/Prompt.NameAttribute.cs

16lines · modecode

1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT License.
3
4namespace Microsoft.Teams.AI.Annotations;
5
6public static partial class Prompt
7{
8 [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, Inherited = true)]
9 public class NameAttribute(string Name) : Attribute
10 {
11 /// <summary>
12 /// the prompts name
13 /// </summary>
14 public string Name { get; private set; } = Name;
15 }
16}