namespace Sick.SafetyScanners.DataStructures; /// /// Contains the device name from a COLA2 variable command response /// public sealed class DeviceName { /// /// Gets or sets the device name string /// public string Name { get; init; } = string.Empty; }