Remotely/Shared/Models/PSCoreCommandResult.cs
2021-07-29 07:56:06 -07:00

21 lines
709 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace Remotely.Shared.Models
{
public class PSCoreCommandResult
{
public string CommandResultID { 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 DateTimeOffset TimeStamp { get; set; } = DateTimeOffset.Now;
}
}