Files
I150/srcs/RobotNet10/RobotApp/Communication/Sick.SafetyScanners/DataStructures/OrderNumber.cs
2026-07-03 16:37:12 +07:00

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;
}