Remotely/Shared/Models/PSError.cs
Jared Goodwin 10ec413b7d WIP
2021-07-29 07:53:54 -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; }
}
}