using System;
namespace BismNormalizer.TabularCompare
{
///
/// Initializes data for the Comparison.PasswordPrompt event.
///
public class PasswordPromptEventArgs : EventArgs
{
///
/// Gets or sets the authentication kind.
///
public string AuthenticationKind { get; set; }
///
/// Gets or sets the name of the data source.
///
public string DataSourceName { get; set; }
///
/// Gets or sets the username.
///
public string Username { get; set; }
///
/// Gets or sets the password.
///
public string Password { get; set; }
///
/// Gets or sets the privacy level.
///
public string PrivacyLevel { get; set; }
///
/// Gets or sets a value indicating if the user cancelled the deployment.
///
public bool UserCancelled { get; set; }
}
}