using DMS.Core.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace DMS.Application.Interfaces; public interface IDeviceDataService { List Devices { get; } event Action> OnDeviceListChanged; event Action OnDeviceIsActiveChanged; Task InitializeAsync(); }