Manager property

String? get Manager
Gets or sets the name of the contact's manager.

Implementation

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

Implementation

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