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 VerboseOutput { get; set; } public List DebugOutput { get; set; } public List ErrorOutput { get; set; } public string HostOutput { get; set; } public List InformationOutput { get; set; } public List WarningOutput { get; set; } public DateTime TimeStamp { get; set; } = DateTime.Now; } }