修改OpcUa后台服务(未完成)

This commit is contained in:
2025-09-03 19:58:02 +08:00
parent 8122ffc6b7
commit bdae3355aa
6 changed files with 266 additions and 428 deletions

View File

@@ -1,13 +0,0 @@
using DMS.Core.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace DMS.Application.Interfaces;
public interface IDeviceDataService
{
List<Device> Devices { get; }
event Action<List<Device>> OnDeviceListChanged;
event Action<Device, bool> OnDeviceIsActiveChanged;
Task InitializeAsync();
}