Month property

Month? Month
Gets or sets the month the time change occurs.

Implementation

enumerations.Month? get Month => this._month;
void Month=(Month? value)

Implementation

set Month(enumerations.Month? value) {
  if (this.CanSetFieldValue(this._month, value)) {
    this._month = value;
    this.Changed();
  }
}