using System;
namespace PepperDash.Essentials.Core.DeviceInfo
{
///
/// Represents a DeviceInfoEventArgs
///
public class DeviceInfoEventArgs:EventArgs
{
///
/// Gets or sets the DeviceInfo
///
public DeviceInfo DeviceInfo { get; set; }
public DeviceInfoEventArgs()
{
}
public DeviceInfoEventArgs(DeviceInfo devInfo)
{
DeviceInfo = devInfo;
}
}
}