mirror of
https://github.com/DarthAffe/ScreenCapture.NET.git
synced 2025-12-12 21:38:42 +00:00
23 lines
409 B
C#
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
|
|
}
|
|
}
|