reactredux/webapi/Core/DomainObjects/Documents/BlogItem.cs

15 lines
310 B
C#

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