14 lines
346 B
C#
14 lines
346 B
C#
namespace Sick.SafetyScanners.DataStructures;
|
|
|
|
/// <summary>
|
|
/// Contains the firmware version from a COLA2 variable command response
|
|
/// </summary>
|
|
public sealed class FirmwareVersion
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the firmware version string
|
|
/// </summary>
|
|
public string Version { get; init; } = string.Empty;
|
|
}
|
|
|