microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
b0114e2b8fb7adf95b650e1c436c87d7615a3cc9

Branches

Tags

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

Clone

HTTPS

Download ZIP

Samples/Samples.Mcp/Prompts/AnotherPrompt.cs

13lines · modecode

1using Microsoft.Teams.AI.Annotations;
2
3namespace Samples.Mcp.Prompts;
4
5[Prompt]
6public class AnotherPrompt
7{
8 [Function("test")]
9 public string Test()
10 {
11 return "a test...";
12 }
13}