microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v2.0.8

Branches

Tags

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

Clone

HTTPS

Download ZIP

core/src/Microsoft.Teams.Apps/OAuth/SignInVerifyStateValue.cs

18lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4using System.Text.Json.Serialization;
5
6namespace Microsoft.Teams.Apps.OAuth;
7
8/// <summary>
9/// Value payload of the signin/verifyState invoke activity.
10/// </summary>
11public class SignInVerifyStateValue
12{
13 /// <summary>
14 /// The magic code (state) from the fallback sign-in flow.
15 /// </summary>
16 [JsonPropertyName("state")]
17 public string? State { get; set; }
18}
19