mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 03:14:57 +00:00
19 lines
360 B
C#
19 lines
360 B
C#
using System;
|
|
|
|
namespace PepperDash.Essentials.Core.DeviceInfo
|
|
{
|
|
public class DeviceInfoEventArgs:EventArgs
|
|
{
|
|
public DeviceInfo DeviceInfo { get; set; }
|
|
|
|
public DeviceInfoEventArgs()
|
|
{
|
|
|
|
}
|
|
|
|
public DeviceInfoEventArgs(DeviceInfo devInfo)
|
|
{
|
|
DeviceInfo = devInfo;
|
|
}
|
|
}
|
|
} |