PorchItem

data class PorchItem(val title: String, val apartments: List<String>, val number: UInt?)

Data class representing a single porch or entrance item for a directory object.

Constructors

Link copied to clipboard
constructor(title: String, apartments: List<String>, number: UInt?)

Properties

Link copied to clipboard

The list of ranges of apartment numbers accessible through this entrance. Typically formatted as string ranges (e.g., "1-50", "51-100").

Link copied to clipboard
val number: UInt?

The numeric identifier of the porch, if applicable (e.g., 1 for "Porch 1"). Null if the porch doesn't use numeric identification.

Link copied to clipboard

The display name or identifier for the porch (e.g., "Porch", "Main Entrance").