namespace Sick.SafetyScanners.DataStructures; /// /// Contains the serial number from a COLA2 variable command response /// public sealed class SerialNumber { /// /// Gets or sets the serial number string /// public string Number { get; init; } = string.Empty; }