14 lines
333 B
C#
14 lines
333 B
C#
namespace Sick.SafetyScanners.DataStructures;
|
|
|
|
/// <summary>
|
|
/// Contains the order number from a COLA2 variable command response
|
|
/// </summary>
|
|
public sealed class OrderNumber
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the order number string
|
|
/// </summary>
|
|
public string Number { get; init; } = string.Empty;
|
|
}
|
|
|