reactredux/webapi/Core/DomainObjects/Contact.cs

15 lines
376 B
C#

using Core.Abstractions.DomainObjects;
using Core.Enumerations;
namespace Core.DomainObjects {
public class Contact : DomainObjectBase<Contact> {
public ContactTypes ContactType { get; set; }
public string Value { get; set; }
public bool Confirmed { get; set; }
public override int GetHashCode() {
throw new NotImplementedException();
}
}
}