using Core.Abstractions.DomainObjects; namespace Core.DomainObjects.Documents { public class BlogItem : PostItemBase { public int? ReadTime { get; set; } public int? Likes { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } } }