Remotely/Shared/Models/PSError.cs
2021-07-29 07:56:15 -07:00

10 lines
171 B
C#

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