IsReminderSet property

bool? IsReminderSet
Gets or sets a value indicating whether a reminder is set for this item.

Implementation

bool? get IsReminderSet =>
    this.PropertyBag[ItemSchema.IsReminderSet] as bool?;
void IsReminderSet=(bool? value)

Implementation

set IsReminderSet(bool? value) =>
    this.PropertyBag[ItemSchema.IsReminderSet] = value;