using Google.Protobuf; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Transport.Discovery { public class CommunicationScannerResult where TAdapter : ITransportAdapter where TResponse : IMessage { /// /// Gets or sets the adapter. /// public TAdapter Adapter { get; set; } /// /// Gets or sets the response. /// public TResponse Response { get; set; } } }