diff --git a/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/model/PreviewableItem.kt b/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/model/PreviewableItem.kt index 4d97d35..05a44e4 100644 --- a/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/model/PreviewableItem.kt +++ b/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/model/PreviewableItem.kt @@ -1,5 +1,10 @@ package org.jetbrains.plugins.template.weatherApp.model +/** + * Represents an item that can be previewed with a label. + * + * @property label A textual representation of the item, often used for display purposes. + */ interface PreviewableItem { val label: String } \ No newline at end of file