Add documentation for PreviewableItem interface

This commit is contained in:
Nebojsa Vuksic 2025-08-01 13:00:41 +02:00
parent ef4e5c8c6c
commit 324fea18bf

View File

@ -1,5 +1,10 @@
package org.jetbrains.plugins.template.weatherApp.model 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 { interface PreviewableItem {
val label: String val label: String
} }