IsRead property

bool? get IsRead
Gets the IsRead property for the item that the change applies to. IsRead is only valid when ChangeType is equal to ChangeType.ReadFlagChange.

Implementation

bool? get IsRead => this._isRead;
set IsRead (bool? value)

Implementation

set IsRead(bool? value) {
  this._isRead = value;
}