microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dev

Branches

Tags

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

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Api/Config/ConfigAuth.cs

29lines · modeblame

5a1c7318Alex Acebo1 years ago1using System.Text.Json.Serialization;
2
3namespace Microsoft.Teams.Api.Config;
4
5/// <summary>
6/// Specifies bot config auth, including type and suggestedActions.
7/// </summary>
8public class ConfigAuth
9{
10/// <summary>
11/// Gets or sets type of bot config auth.
12/// </summary>
13/// <value>
14/// The type of bot config auth.
15/// </value>
16[JsonPropertyName("type")]
17[JsonPropertyOrder(0)]
18public string Type { get; set; } = "auth";
19
20/// <summary>
21/// Gets or sets suggested actions.
22/// </summary>
23/// <value>
24/// The suggested actions of bot config auth.
25/// </value>
26[JsonPropertyName("suggestedActions")]
27[JsonPropertyOrder(1)]
28public SuggestedActions? SuggestedActions { get; set; }
29}