Files

12 lines
309 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
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; }
}
}