mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
12 lines
270 B
C#
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; }
|
|
}
|
|
} |