namespace Sick.SafetyScanners.DataStructures;
///
/// Contains the firmware version from a COLA2 variable command response
///
public sealed class FirmwareVersion
{
///
/// Gets or sets the firmware version string
///
public string Version { get; init; } = string.Empty;
}