using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Editors
{
///
/// Represents a general event arguments.
///
///
public class ElementsEventArgs : EventArgs
{
///
/// Gets or sets the elements associated with the event.
///
public List Elements { get; set; }
///
/// Gets or sets a value indicating whether to cancel the operation if possible.
///
public bool Cancel { get; set; }
///
/// Initializes a new instance of the class.
///
public ElementsEventArgs()
{
Elements = new List();
}
///
/// Initializes a new instance of the class.
///
/// The elements.
public ElementsEventArgs(List elements) : this()
{
Elements = elements;
}
}
}