Class ContactsDetails
The current page templates view model.
[DataContract]
public class ContactsDetails
- Inheritance
-
ContactsDetails
- Inherited Members
Properties
CompanyName
Gets or sets the contact company.
[DataMember(Name = "companyName")]
public string CompanyName { get; set; }
Property Value
Gets or sets the contact email.
[DataMember(Name = "email")]
public string Email { get; set; }
Property Value
Id
Gets or sets the contact id.
[DataMember(Name = "id")]
public string Id { get; set; }
Property Value
JobTitle
Gets or sets the contact role.
[DataMember(Name = "jobTitle")]
public string JobTitle { get; set; }
Property Value
Name
Gets or sets the contact name.
[DataMember(Name = "name")]
public string Name { get; set; }
Property Value
PhoneNumber
Gets or sets the contact phoneNumber.
[DataMember(Name = "phoneNumber")]
public PhoneNumber PhoneNumber { get; set; }