WeddingAnniversary property

DateTime? WeddingAnniversary
Gets or sets the date of the contact's wedding anniversary.

Implementation

DateTime? get WeddingAnniversary =>
    this.PropertyBag[ContactSchema.WeddingAnniversary] as DateTime?;
void WeddingAnniversary=(DateTime? value)

Implementation

set WeddingAnniversary(DateTime? value) =>
    this.PropertyBag[ContactSchema.WeddingAnniversary] = value;