using DomainObjects.Abstractions; namespace DomainObjects.Documents.User { public class Site : DomainObjectBase { public Guid SiteId { get; set; } public List Hosts { get; set; } public Roles Role { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } } }