using DomainObjects.Abstractions; using DomainObjects.Enumerations; namespace DomainObjects; public class Contact : DomainObjectBase { public ContactTypes Type { get; set; } public string Value { get; set; } public bool? Confirmed { get; set; } public bool? Primary { get; set; } public Contact(ContactTypes type, string value) { Type = type; Value = value; } public override int GetHashCode() { throw new NotImplementedException(); } }