EndDate property
TZDateTime?
get
EndDate
Implementation
TZDateTime? get EndDate => this._endDate;
set
EndDate
(TZDateTime? value)
Implementation
set EndDate(TZDateTime? value) {
if (this.CanSetFieldValue(this._endDate, value)) {
this._endDate = value;
this._numberOfOccurrences = null;
this.Changed();
}
}