microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
core/src/Microsoft.Teams.Bot.Core/Hosting/BotApplicationOptions.cs
15lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | namespace Microsoft.Teams.Bot.Core.Hosting; |
| 5 | |
| 6 | /// <summary> |
| 7 | /// Options for configuring a bot application instance. |
| 8 | /// </summary> |
| 9 | public 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 | |