microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Plugins/Microsoft.Teams.Plugins.AspNetCore.DevTools/TeamsDevToolsSettings.cs
11lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | using Microsoft.Teams.Plugins.AspNetCore.DevTools.Models; |
| 5 | |
| 6 | namespace Microsoft.Teams.Plugins.AspNetCore.DevTools.Extensions; |
| 7 | |
| 8 | public class TeamsDevToolsSettings |
| 9 | { |
| 10 | public IList<Page> Pages { get; set; } = []; |
| 11 | } |