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