reactredux/webapi/Core/DomainObjects/PageSections/BlogTitleSection.cs

12 lines
296 B
C#

using Core.Abstractions.DomainObjects;
namespace Core.DomainObjects.PageSections {
public class BlogTitleSection : PageSectionBase<BlogTitleSection> {
public string PostedOnBy { get; set; }
public override int GetHashCode() {
throw new NotImplementedException();
}
}
}