FileHandler

@Serializable
data class FileHandler(val action: String, val name: String, val icons: List<Page.ImageResource>? = null, val accepts: List<Page.FileFilter>? = null, val launchType: String)

Constructors

Link copied to clipboard
constructor(action: String, name: String, icons: List<Page.ImageResource>? = null, accepts: List<Page.FileFilter>? = null, launchType: String)

Properties

Link copied to clipboard

Mimic a map, name is the key, accepts is the value.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Won't repeat the enums, using string for easy comparison. Same as the other enums below.

Link copied to clipboard