microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1e6c6424b397bc7a2e03de41e3d58c1434d9ba5e

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

29lines · modecode

1using 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)]
18 public 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)]
28 public SuggestedActions? SuggestedActions { get; set; }
29}