Remotely/Remotely_Library/Models/PSError.cs
Jared Goodwin 8debc4bad5 Initial
2021-07-29 07:53:41 -07:00

15 lines
276 B
C#

using System;
using System.Collections.Generic;
using System.Management.Automation;
using System.Text;
namespace Remotely_Library.Models
{
public class PSError
{
public string Exception { get; set; }
public string StackTrace { get; set; }
}
}