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

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();
}
}
}