using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RealTimeGraphX.EventArguments
{
///
/// Represents a event arguments.
///
/// The type of the image.
///
public class PaintingCompletedEventArgs : EventArgs
{
///
/// Gets or sets the graph image.
///
public TImage Image { get; set; }
}
}