diff options
Diffstat (limited to 'src/Model/Content.kt')
-rw-r--r-- | src/Model/Content.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Model/Content.kt b/src/Model/Content.kt index 0244359e..30ec1fda 100644 --- a/src/Model/Content.kt +++ b/src/Model/Content.kt @@ -81,6 +81,8 @@ public class ContentUnorderedList() : ContentBlock() public class ContentOrderedList() : ContentBlock() public class ContentListItem() : ContentBlock() +public class ContentHeading(val level: Int) : ContentBlock() + public class ContentSection(public val tag: String, public val subjectName: String?) : ContentBlock() { override fun equals(other: Any?): Boolean = super.equals(other) && other is ContentSection && tag == other.tag && subjectName == other.subjectName |