using VPLink.Common.Data; namespace VPLink.Common.Services; /// /// Represents an object that can be used as a relay target. /// public interface IRelayTarget { /// /// Sends a message to the relay target. /// /// The message to send. /// A representing the asynchronous operation. Task SendMessageAsync(RelayedMessage message); }