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