14 lines
379 B
C#
14 lines
379 B
C#
using Core.Abstractions.DomainObjects;
|
|
|
|
namespace Core.DomainObjects.PageSections {
|
|
public class TitleSection : PageSectionBase<TitleSection> {
|
|
public Image? Image { get; set; }
|
|
public MenuItem? PrimaryLink { get; set; }
|
|
public MenuItem? SecondaryLink { get; set; }
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|