21 lines
481 B
C#
21 lines
481 B
C#
using DomainObjects.Abstractions;
|
|
using DomainObjects.Enumerations;
|
|
|
|
namespace DomainObjects;
|
|
|
|
public class Contact : DomainObjectBase<Contact> {
|
|
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();
|
|
}
|
|
}
|