Files
Essentials/essentials-framework/Essentials Core/PepperDashEssentialsBase/Device Info/IDeviceInfoProvider.cs
2020-11-09 09:58:51 -07:00

13 lines
263 B
C#

using System;
namespace PepperDash.Essentials.Core.DeviceInfo
{
public interface IDeviceInfoProvider
{
DeviceInfo DeviceInfo { get; }
event EventHandler<DeviceInfoEventArgs> DeviceInfoChanged;
void UpdateDeviceInfo();
}
}