using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Common.SQL { /// /// Represents a SQL command that can be executed by a . /// /// /// /// /// The following example demonstrates how to set the connected machine's demo state and query for the connected machine's jobs. /// /// /// /// public class RemoteSqlCommand { /// /// Gets or sets the command execution mode. /// public RemoteSqlCommandMode Mode { get; set; } /// /// Gets or sets the SQL query. /// public String SQL { get; set; } /// /// Gets or sets the command timeout. /// public int Timeout { get; set; } /// /// Initializes a new instance of the class. /// public RemoteSqlCommand() { Timeout = 30; } } }