// ReSharper disable MemberCanBePrivate.Global using System; namespace ScreenCapture { /// /// /// Represents the information supplied with an -event. /// public class ScreenCaptureUpdatedEventArgs : EventArgs { #region Properties & Fields /// /// true if the update was successful; otherwise, false. /// public bool IsSuccessful { get; set; } #endregion #region Constructors /// /// Initializes a new instance of the class. /// /// Indicates if the last update was successful. public ScreenCaptureUpdatedEventArgs(bool isSuccessful) { this.IsSuccessful = isSuccessful; } #endregion } }