WeddingAnniversary property

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

Implementation

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

Implementation

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