mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
21 lines
683 B
C#
21 lines
683 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Management.Automation;
|
|
using System.Text;
|
|
|
|
namespace Remotely_Library.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;
|
|
}
|
|
}
|