12 lines
309 B
Plaintext
12 lines
309 B
Plaintext
|
|
using DTS.Common.Enums.Communication;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface.Communication
|
||
|
|
{
|
||
|
|
public interface ICommunicationReport
|
||
|
|
{
|
||
|
|
object UserState { get; set; }
|
||
|
|
CommunicationConstantsAndEnums.CommunicationResult Result { get; set; }
|
||
|
|
byte[] Data { get; set; }
|
||
|
|
}
|
||
|
|
}
|