NumberOfOccurrences property

int? NumberOfOccurrences
Gets or sets the number of occurrences.

Implementation

int? get NumberOfOccurrences => this.numberOfOccurrences;
void NumberOfOccurrences=(int? value)

Implementation

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