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