AssistantName property

String? AssistantName
Gets or sets the contact's assistant name.

Implementation

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

Implementation

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