using adas_core.Domain.Models.SystemAlerts; namespace adas_core.Application.Services.Interfaces; public interface ISendAlertService { /// /// Asynchronously retrieves a list of available queues. /// /// A task that represents the asynchronous operation, containing the list of instances. Task> GetQueues(); /// /// Retrieves a list of performance records. /// /// A list of objects. List GetPerformance(); /// /// Retrieves a list of API clients. /// /// A task that represents the asynchronous operation. The task result contains a list of . Task> GetApiClients(); }