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