Offset property

TimeSpan? Offset
Gets or sets the offset since the beginning of the year when the change occurs.

Implementation

TimeSpan? get Offset => this._offset;
void Offset=(TimeSpan? value)

Implementation

set Offset(TimeSpan? value) {
  if (this.CanSetFieldValue(this._offset, value)) {
    this._offset = value;
    this.Changed();
  }
}