reactredux/src/DomainObjects/PageSections/TestimonialsSection.cs

11 lines
283 B
C#

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