microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
436972edd2a63f773497d45cdc1de6342c7a1c20

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}