using System;
namespace AMWD.Protocols.Modbus.Common.Events
{
///
/// Represents the coil written event arguments.
///
[System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
public class CoilWrittenEventArgs : EventArgs
{
///
/// Gets or sets the unit id.
///
public byte UnitId { get; set; }
///
/// Gets or sets the coil address.
///
public ushort Address { get; set; }
///
/// Gets or sets the coil value.
///
public bool Value { get; set; }
}
}