16 lines
379 B
C#
16 lines
379 B
C#
using Core.Abstractions.DomainObjects;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Core.DomainObjects.PageSections {
|
|
public class FeaturedBologsSection : PageSectionBase<FeaturedBologsSection> {
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|