Remotely/Shared/Models/PSError.cs
2020-04-11 09:52:46 -07:00

10 lines
171 B
C#

namespace Remotely.Shared.Models
{
public class PSError
{
public string Exception { get; set; }
public string StackTrace { get; set; }
}
}