ScreenCapture.NET/ScreenCapture/Events/ScreenCaptureUpdatedEventArgs.cs
2021-05-21 21:02:13 +02:00

23 lines
409 B
C#

using System;
namespace ScreenCapture.Events
{
public class ScreenCaptureUpdatedEventArgs : EventArgs
{
#region Properties & Fields
public bool IsSuccessful { get; set; }
#endregion
#region Constructors
public ScreenCaptureUpdatedEventArgs(bool isSuccessful)
{
this.IsSuccessful = isSuccessful;
}
#endregion
}
}