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
EmailAddress
Gets or sets the email address.
public string EmailAddress { get; set; }
Property Value
FullName
Get or set the full name.
public string FullName { get; set; }
Property Value
PhoneNumber
Gets or sets the phone number.
public string PhoneNumber { get; set; }
Property Value
Website
Gets or sets the website URL.
public string Website { get; set; }