Files
Readarr/packages/Exceptron.Driver.0.1.0.17/src/ExceptionData.cs
T
2012-05-06 09:17:55 -07:00

12 lines
270 B
C#

using System;
namespace Exceptron.Driver
{
public class ExceptionData
{
public Exception Exception { get; set; }
public string Component { get; set; }
public string UserId { get; set; }
public string Message { get; set; }
}
}