9 lines
166 B
C#
9 lines
166 B
C#
|
using RuleEngine.DTOs;
|
||
|
|
||
|
namespace RuleEngine.Interfaces
|
||
|
{
|
||
|
public interface IDeviceService
|
||
|
{
|
||
|
Task<bool> UpdatePVT(DeviceMessage deviceMessage);
|
||
|
}
|
||
|
}
|