IDeviceData.cs 217 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Core.Common.DeviceData
  6. {
  7. public interface IDeviceData
  8. {
  9. void Update(IDeviceData data);
  10. }
  11. }