mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 11:54:57 +00:00
16 lines
375 B
C#
16 lines
375 B
C#
using System;
|
|
using PepperDash.Core;
|
|
|
|
namespace PepperDash.Essentials.Core.DeviceInfo
|
|
{
|
|
public interface IDeviceInfoProvider:IKeyed
|
|
{
|
|
DeviceInfo DeviceInfo { get; }
|
|
|
|
event DeviceInfoChangeHandler DeviceInfoChanged;
|
|
|
|
void UpdateDeviceInfo();
|
|
}
|
|
|
|
public delegate void DeviceInfoChangeHandler(IKeyed device, DeviceInfoEventArgs args);
|
|
} |