microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
74588b33035a67444a68e0299b0b92494fa76c4a

Branches

Tags

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

Clone

HTTPS

Download ZIP

Samples/Samples.Mcp/Prompts/AnotherPrompt.cs

13lines · modepreview

using Microsoft.Teams.AI.Annotations;

namespace Samples.Mcp.Prompts;

[Prompt]
public class AnotherPrompt
{
    [Function("test")]
    public string Test()
    {
        return "a test...";
    }
}