microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
core/src/Microsoft.Teams.Apps/OAuth/SignInVerifyStateValue.cs
18lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | using System.Text.Json.Serialization; |
| 5 | |
| 6 | namespace Microsoft.Teams.Apps.OAuth; |
| 7 | |
| 8 | /// <summary> |
| 9 | /// Value payload of the signin/verifyState invoke activity. |
| 10 | /// </summary> |
| 11 | public 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 | |