using System;
namespace Artemis.Core.Services
{
///
/// Contains data for input provider identifier events
///
public class InputProviderIdentifierEventArgs : EventArgs
{
///
/// Creates a new instance of the class
///
/// A value that can be used to identify this device
/// The type of device this identifier belongs to
public InputProviderIdentifierEventArgs(object identifier, InputDeviceType deviceType)
{
Identifier = identifier;
DeviceType = deviceType;
}
///
/// Gets a value that can be used to identify this device
///
public object Identifier { get; }
///
/// Gets the type of device this identifier belongs to
///
public InputDeviceType DeviceType { get; }
}
}