FirmwareImpl

class FirmwareImpl(val manufacturer: String, val name: String, val description: String, val version: String, val releaseDate: String) : Firmware

Implementation of the Firmware interface. This class provides details about the firmware, including its manufacturer, name, description, version, and release date.

Author

N7ghtm4r3

Parameters

manufacturer

The manufacturer of the firmware

name

The name of the firmware

description

A description of the firmware

version

The version of the firmware

releaseDate

The release date of the firmware

See also

Constructors

Link copied to clipboard
constructor(manufacturer: String, name: String, description: String, version: String, releaseDate: String)

Properties

Link copied to clipboard
open override val description: String
Link copied to clipboard
open override val manufacturer: String
Link copied to clipboard
open override val name: String
Link copied to clipboard
open override val releaseDate: String
Link copied to clipboard
open override val version: String