microsoft/teams.net
Publicmirrored from https://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.AI/Annotations/Prompt.NameAttribute.cs
13lines · modecode
| 1 | namespace Microsoft.Teams.AI.Annotations; |
| 2 | |
| 3 | public static partial class Prompt |
| 4 | { |
| 5 | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, Inherited = true)] |
| 6 | public class NameAttribute(string Name) : Attribute |
| 7 | { |
| 8 | /// <summary> |
| 9 | /// the prompts name |
| 10 | /// </summary> |
| 11 | public string Name { get; private set; } = Name; |
| 12 | } |
| 13 | } |