11 lines
283 B
C#
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();
|
|
}
|
|
}
|