mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
17 lines
468 B
C#
17 lines
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Remotely_Library.Models
|
|
{
|
|
public class GenericCommandResult
|
|
{
|
|
public string DeviceID { get; set; }
|
|
public string CommandContextID { get; set; }
|
|
public string CommandType { get; set; }
|
|
public string StandardOutput { get; set; }
|
|
public string ErrorOutput { get; set; }
|
|
public DateTime TimeStamp { get; set; } = DateTime.Now;
|
|
}
|
|
}
|