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