using System.Diagnostics.CodeAnalysis; namespace Modbus.Data { /// /// Modbus message containing data. /// [SuppressMessage("Microsoft.Naming", "CA1711:IdentifiersShouldNotHaveIncorrectSuffix")] public interface IModbusMessageDataCollection { /// /// Gets the network bytes. /// [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] byte[] NetworkBytes { get; } /// /// Gets the byte count. /// byte ByteCount { get; } } }