microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
samples/migration-bot

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/src/Microsoft.Teams.Bot.Core/Hosting/BotApplicationOptions.cs

15lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4namespace Microsoft.Teams.Bot.Core.Hosting;
5
6/// <summary>
7/// Options for configuring a bot application instance.
8/// </summary>
9public sealed class BotApplicationOptions
10{
11 /// <summary>
12 /// Gets or sets the application (client) ID, used for logging and diagnostics.
13 /// </summary>
14 public string AppId { get; set; } = string.Empty;
15}
16