namespace Sick.SafetyScanners.DataStructures;
///
/// Contains the application name from a COLA2 variable command response
///
public sealed class ApplicationName
{
///
/// Gets or sets the version indicator (e.g., "V" for version)
///
public string VersionCVersion { get; init; } = string.Empty;
///
/// Gets or sets the major version number
///
public byte VersionMajorVersionNumber { get; init; }
///
/// Gets or sets the minor version number
///
public byte VersionMinorVersionNumber { get; init; }
///
/// Gets or sets the version release number
///
public byte VersionReleaseNumber { get; init; }
///
/// Gets or sets the length of the application name
///
public uint NameLength { get; init; }
///
/// Gets or sets the application name string
///
public string Name { get; init; } = string.Empty;
}