Analysis-Services/AlmToolkit/BismNormalizer/TabularCompare/BlobKeyEventArgs.cs

36 lines
971 B
C#
Raw Normal View History

2023-09-28 23:08:33 +08:00
using System;
namespace BismNormalizer.TabularCompare
{
/// <summary>
/// Initializes data for the Comparison.PasswordPrompt event.
/// </summary>
public class BlobKeyEventArgs : EventArgs
{
/// <summary>
/// Gets or sets the authentication kind.
/// </summary>
public string AuthenticationKind { get; set; }
/// <summary>
/// Gets or sets the name of the data source.
/// </summary>
public string DataSourceName { get; set; }
/// <summary>
/// Gets or sets the password.
/// </summary>
public string AccountKey { get; set; }
/// <summary>
/// Gets or sets the privacy level.
/// </summary>
public string PrivacyLevel { get; set; }
/// <summary>
/// Gets or sets a value indicating if the user cancelled the deployment.
/// </summary>
public bool UserCancelled { get; set; }
}
}