IsRead property

bool? 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;
void IsRead=(bool? value)

Implementation

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