// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. namespace Wix.Samples { using System; /// /// Arguments provided when bundle progress is updated. /// [Serializable] public class BundleProgressEventArgs : EventArgs { /// /// Gets the percentage from 0 to 100 completed for a bundle. /// public int Progress { get; set; } /// /// Gets or sets the of the operation. This is passed back to the bundle. /// public BundleResult Result { get; set; } } }