using System;
namespace Avalonia.Controls
{
///
/// Provides data for events.
///
public class PixelPointEventArgs : EventArgs
{
///
/// Initializes a new instance of the class.
///
/// The data.
public PixelPointEventArgs(PixelPoint point)
{
Point = point;
}
///
/// Gets the data.
///
public PixelPoint Point { get; }
}
}