Class Phone
Represents a phone entity.
Inherited Members
Namespace: Innovt.Domain.Contacts
Assembly: Innovt.Domain.dll
Syntax
public class Phone : ValueObject
Properties
| Edit this page View SourceAreaCode
Gets or sets the area code associated with the phone number.
Declaration
public string AreaCode { get; set; }
Property Value
Type | Description |
---|---|
string |
CountryCode
Gets or sets the country code associated with the phone number.
Declaration
public string CountryCode { get; set; }
Property Value
Type | Description |
---|---|
string |
Extension
Gets or sets the phone extension, if applicable.
Declaration
public string Extension { get; set; }
Property Value
Type | Description |
---|---|
string |
Number
Gets or sets the main phone number.
Declaration
public string Number { get; set; }
Property Value
Type | Description |
---|---|
string |