using System.Runtime.Serialization; namespace AipsCore.Application.Abstract; public interface IMessagePublisher { Task PublishAsync(string exchange, string routeKey, T message, CancellationToken cancellationToken = default); }