Updated ET driver

This commit is contained in:
Keivan Beigi
2012-05-06 09:17:55 -07:00
parent 7f321c500b
commit 109904ccc8
17 changed files with 4 additions and 6 deletions
+12
View File
@@ -0,0 +1,12 @@
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; }
}
}