NumberOfOccurrences property
int?
get
NumberOfOccurrences
Implementation
int? get NumberOfOccurrences => this.numberOfOccurrences;
set
NumberOfOccurrences
(int? value)
Implementation
set NumberOfOccurrences(int? value) {
if (this.CanSetFieldValue(this.numberOfOccurrences, value)) {
this.numberOfOccurrences = value;
this.Changed();
}
}