microsoft/teams.net
Publicmirrored from https://github.com/microsoft/teams.netAvailable
core/src/Microsoft.Teams.Bot.DevTools/DevToolsSettings.cs
18lines · modeblame
3ab812c1Rajan5 months ago | 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. | |
| 3 | | |
| 4 | using Microsoft.Teams.Bot.DevTools.Models; | |
| 5 | | |
| 6 | namespace Microsoft.Teams.Bot.DevTools; | |
| 7 | | |
| 8 | /// <summary> | |
| 9 | /// Configuration settings for DevTools. | |
| 10 | /// Bound from the "DevTools" configuration section. | |
| 11 | /// </summary> | |
| 12 | public class DevToolsSettings | |
| 13 | { | |
| 14 | /// <summary> | |
| 15 | /// Custom pages to display in the DevTools UI. | |
| 16 | /// </summary> | |
| 17 | public IList<Page> Pages { get; } = []; | |
| 18 | } |