15 lines
308 B
C#
15 lines
308 B
C#
using Core.Abstractions.DomainObjects;
|
|
|
|
namespace Core.DomainObjects.Documents {
|
|
public class BlogItem : PostItemBase<BlogItem> {
|
|
|
|
public int? ReadTime { get; set; }
|
|
|
|
public int? Likes { get; set; }
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|