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; } } }