Remotely/Shared/Models/PSError.cs
Jared Goodwin a0405e28a0 WIP
2019-06-15 18:08:30 -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; }
}
}