// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.Teams.Apps.OAuth;
///
/// Options for the OAuth sign-in flow.
///
public class OAuthOptions
{
///
/// The OAuth connection name to use. If null, uses the default registered connection.
/// When passed to ,
/// this is required and identifies the connection.
///
public string? ConnectionName { get; set; }
///
/// The text displayed on the OAuthCard.
///
public string OAuthCardText { get; set; } = "Please Sign In";
///
/// The text displayed on the sign-in button.
///
public string SignInButtonText { get; set; } = "Sign In";
}