// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Text.Json.Serialization;
namespace Microsoft.Teams.Apps.OAuth;
///
/// Value payload of the signin/verifyState invoke activity.
///
public class SignInVerifyStateValue
{
///
/// The magic code (state) from the fallback sign-in flow.
///
[JsonPropertyName("state")]
public string? State { get; set; }
}