Surname property

String? Surname
Gets or sets the surname of the contact.

Implementation

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

Implementation

set Surname(String? value) => this.PropertyBag[ContactSchema.Surname] = value;