microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
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 | |
| 4 | using Microsoft.AspNetCore.Builder; |
| 5 | using Microsoft.Teams.Apps.Plugins; |
| 6 | |
| 7 | namespace Microsoft.Teams.Plugins.AspNetCore; |
| 8 | |
| 9 | public interface IAspNetCorePlugin : IPlugin |
| 10 | { |
| 11 | public IApplicationBuilder Configure(IApplicationBuilder builder); |
| 12 | } |