12 lines
296 B
C#
12 lines
296 B
C#
using Core.Abstractions.DomainObjects;
|
|
|
|
namespace Core.DomainObjects.PageSections {
|
|
public class FeaturesSection : PageSectionBase<FeaturesSection> {
|
|
public List<Feature> Items { get; set; }
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|