blob: 860e5293c6e9e87abce9fdbca92b947e65a0cde2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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<TAdapter, TResponse> where TAdapter : ITransportAdapter where TResponse : IMessage
{
/// <summary>
/// Gets or sets the adapter.
/// </summary>
public TAdapter Adapter { get; set; }
/// <summary>
/// Gets or sets the response.
/// </summary>
public TResponse Response { get; set; }
}
}
|