using System; namespace BismNormalizer.TabularCompare { /// /// Provides data for the IComparison.DeploymentMessage event. /// public class DeploymentMessageEventArgs : EventArgs { /// /// Initializes DeploymentMessageEventArgs with necessary data for IComparison.DeploymentMessage event. /// /// The work item that the message relates to. /// The deployment message. /// The DeploymentStatus. public DeploymentMessageEventArgs(string workItem, string message, DeploymentStatus deploymentStatus) { WorkItem = workItem; Message = message; DeploymentStatus = deploymentStatus; } /// /// Gets or sets the work item that the message relates to. /// public string WorkItem { get; set; } /// /// Gets or set the deployment message. /// public string Message { get; set; } /// /// Gets or sets the deployment status. /// public DeploymentStatus DeploymentStatus { get; set; } } }