microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/close-pull-request

Branches

Tags

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

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Plugins/Microsoft.Teams.Plugins.AspNetCore/IAspNetCorePlugin.cs

12lines · modecode

1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT License.
3
4using Microsoft.AspNetCore.Builder;
5using Microsoft.Teams.Apps.Plugins;
6
7namespace Microsoft.Teams.Plugins.AspNetCore;
8
9public interface IAspNetCorePlugin : IPlugin
10{
11 public IApplicationBuilder Configure(IApplicationBuilder builder);
12}