using System; namespace Artemis.Core; /// /// Provides data about device related events /// public class DeviceEventArgs : EventArgs { internal DeviceEventArgs(ArtemisDevice device) { Device = device; } /// /// Gets the device this event is related to /// public ArtemisDevice Device { get; } }