mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
added exceptron log target.
This commit is contained in:
30
Exceptron.Client/Message/Frame.cs
Normal file
30
Exceptron.Client/Message/Frame.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
namespace Exceptron.Client.Message
|
||||
{
|
||||
internal class Frame
|
||||
{
|
||||
/// <summary>
|
||||
/// Order of current frame
|
||||
/// </summary>
|
||||
public int i { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Line number of the current frame
|
||||
/// </summary>
|
||||
public int ln { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// File name of the current frame
|
||||
/// </summary>
|
||||
public string fn { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Method name for current frame
|
||||
/// </summary>
|
||||
public string m { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Class name for current frame
|
||||
/// </summary>
|
||||
public string c { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user