Month property

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

Implementation

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

Implementation

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