mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
25 lines
No EOL
523 B
C#
25 lines
No EOL
523 B
C#
using System;
|
|
|
|
namespace PepperDash.Essentials.Core.DeviceInfo
|
|
{
|
|
/// <summary>
|
|
/// Represents a DeviceInfoEventArgs
|
|
/// </summary>
|
|
public class DeviceInfoEventArgs:EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the DeviceInfo
|
|
/// </summary>
|
|
public DeviceInfo DeviceInfo { get; set; }
|
|
|
|
public DeviceInfoEventArgs()
|
|
{
|
|
|
|
}
|
|
|
|
public DeviceInfoEventArgs(DeviceInfo devInfo)
|
|
{
|
|
DeviceInfo = devInfo;
|
|
}
|
|
}
|
|
} |