Class HardwareVersionInfo
- Namespace
- RetailForce.Fiscalisation.Entities
- Assembly
- RetailForce.Fiscalisation.Model.dll
Describes a hardware component (printer, driver, service) and the firmware/driver versions that have been explicitly tested and are supported.
public class HardwareVersionInfo
- Inheritance
-
objectHardwareVersionInfo
- Inherited Members
Properties
ModelIdentifier
Human-readable identifier for the hardware model (e.g. "Epson_FP90III", "Flink", "BBox").
public string ModelIdentifier { get; set; }
Property Value
- string
NoVersionCheck
When true, firmware/driver version checking is skipped and all versions are accepted.
When false, only versions listed in SupportedFirmwareVersions are considered valid.
public bool NoVersionCheck { get; set; }
Property Value
- bool
SupportedFirmwareVersions
The explicit list of firmware or driver versions that have been tested and are supported. Only versions present in this list are considered certified; versions not listed are untested.
public List<string> SupportedFirmwareVersions { get; set; }
Property Value
SupportedPlatformTypes
The list of platform types supported by this hardware component.
public List<PlatformType> SupportedPlatformTypes { get; set; }