mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-09 09:45:06 +00:00
13 lines
263 B
C#
13 lines
263 B
C#
using System;
|
|
|
|
namespace PepperDash.Essentials.Core.DeviceInfo
|
|
{
|
|
public interface IDeviceInfoProvider
|
|
{
|
|
DeviceInfo DeviceInfo { get; }
|
|
|
|
event EventHandler<DeviceInfoEventArgs> DeviceInfoChanged;
|
|
|
|
void UpdateDeviceInfo();
|
|
}
|
|
} |