14 lines
331 B
C#
14 lines
331 B
C#
namespace Sick.SafetyScanners.DataStructures;
|
|
|
|
/// <summary>
|
|
/// Contains the project name from a COLA2 variable command response
|
|
/// </summary>
|
|
public sealed class ProjectName
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the project name string
|
|
/// </summary>
|
|
public string Name { get; init; } = string.Empty;
|
|
}
|
|
|