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

11 lines
307 B
C#

using Core.Abstractions.DomainObjects;
namespace Core.DomainObjects.PageSections {
public class TestimonialsSection : PageSectionBase<TestimonialsSection> {
public List<Testimonial> Items { get; set; }
public override int GetHashCode() {
throw new NotImplementedException();
}
}
}