using System;
namespace BismNormalizer.TabularCompare
{
///
/// Provides data for the Comparison.DatabaseDeployment event.
///
public class DatabaseDeploymentEventArgs : EventArgs
{
///
/// Gets or sets a flag indicating if the database deployment was successful.
///
public bool DeploymentSuccessful { get; set; }
}
}