using Core.Abstractions.DomainObjects; namespace Core.DomainObjects { public class Header : DomainObjectBase
{ public string Title { get; set; } public Dictionary HeaderLink { get; set; } public Dictionary Meta { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } } }