mirror of
https://github.com/DarthAffe/OBD.NET.git
synced 2025-12-13 09:18:31 +00:00
28 lines
617 B
C#
28 lines
617 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OBD.NET.Common.Devices
|
|
{
|
|
/// <summary>
|
|
/// Class used for queued command
|
|
/// </summary>
|
|
public class QueuedCommand
|
|
{
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance
|
|
/// </summary>
|
|
/// <param name="commandText"></param>
|
|
public QueuedCommand(string commandText)
|
|
{
|
|
CommandResult = new CommandResult();
|
|
CommandText = commandText;
|
|
}
|
|
|
|
public string CommandText { get; set; }
|
|
|
|
public CommandResult CommandResult { get; }
|
|
}
|
|
}
|