using System;
namespace IoT.Shared.Infrastructure
{
public interface IDeviceService : IDisposable
void Start();
void Stop();
void Execute();
}