Skip to content

Commit

Permalink
Add parameters to Page. (description and type) (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
Loic-Dumas authored Feb 19, 2024
1 parent 70c0cfd commit cf55609
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object Config {

const val major = 0
const val minor = 8
const val patch = 1
const val patch = 2
const val versionName = "$major.$minor.$patch"

const val maven_group = "ch.srg.data.provider"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ data class Page(
override val vendor: Vendor,
val title: String,
val isPublished: Boolean,
val type: String,
val sectionList: List<Section>? = null,
val topicUrn: String? = null
val topicUrn: String? = null,
val description: String? = null,
) : ILObject

0 comments on commit cf55609

Please sign in to comment.