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