Files
Essentials/src/PepperDash.Essentials.Core/Device Info/IDeviceInfoProvider.cs
2023-02-07 15:45:01 -07:00

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);
}