Remotely/Shared/Models/PSCoreCommandResult.cs
Jared Goodwin a0405e28a0 WIP
2019-06-15 18:08:30 -07:00

20 lines
646 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Remotely.Shared.Models
{
public class PSCoreCommandResult
{
public string CommandContextID { get; set; }
public string DeviceID { get; set; }
public List<string> VerboseOutput { get; set; }
public List<string> DebugOutput { get; set; }
public List<string> ErrorOutput { get; set; }
public string HostOutput { get; set; }
public List<string> InformationOutput { get; set; }
public List<string> WarningOutput { get; set; }
public DateTime TimeStamp { get; set; } = DateTime.Now;
}
}