Remotely/Remotely_Shared/Models/PSError.cs
2019-04-05 22:23:59 -07:00

14 lines
239 B
C#

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