12 lines
309 B
C#
12 lines
309 B
C#
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; }
|
|
}
|
|
}
|