microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
devtools-port-no-auth

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/src/Microsoft.Teams.Bot.DevTools/DevToolsSettings.cs

18lines · modeblame

3ab812c1Rajan5 months ago1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4using Microsoft.Teams.Bot.DevTools.Models;
5
6namespace Microsoft.Teams.Bot.DevTools;
7
8/// <summary>
9/// Configuration settings for DevTools.
10/// Bound from the "DevTools" configuration section.
11/// </summary>
12public class DevToolsSettings
13{
14/// <summary>
15/// Custom pages to display in the DevTools UI.
16/// </summary>
17public IList<Page> Pages { get; } = [];
18}