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