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