Table of Contents

Class ContactInformation

Namespace
arolariu.Backend.Common.DDD.ValueObjects
Assembly
arolariu.Backend.Common.dll

Contact information value object.

[Serializable]
[ExcludeFromCodeCoverage]
public sealed record ContactInformation : IEquatable<ContactInformation>
Inheritance
ContactInformation
Implements
Inherited Members

Properties

Address

Gets or sets the address associated with the object.

public string Address { get; set; }

Property Value

string

EmailAddress

Gets or sets the email address.

public string EmailAddress { get; set; }

Property Value

string

FullName

Get or set the full name.

public string FullName { get; set; }

Property Value

string

PhoneNumber

Gets or sets the phone number.

public string PhoneNumber { get; set; }

Property Value

string

Website

Gets or sets the website URL.

public string Website { get; set; }

Property Value

string