Remotely/Shared/Models/GenericCommandResult.cs
Jared Goodwin 10ec413b7d WIP
2021-07-29 07:53:54 -07:00

17 lines
467 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Remotely.Shared.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;
}
}