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

17 lines
412 B
C#

using Core.Abstractions.DomainObjects;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Core.DomainObjects.PageSections {
public class CommentsSection : PageSectionBase<CommentsSection> {
public string LeaveComment { get; set; }
public override int GetHashCode() {
throw new NotImplementedException();
}
}
}