1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-04 19:00:02 +00:00
Radarr/Exceptron.Client/Message/Frame.cs

30 lines
693 B
C#
Raw Normal View History

2013-06-05 21:33:16 -07:00
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>
/// Method name for current frame
/// </summary>
public string m { get; set; }
/// <summary>
/// Class name for current frame
/// </summary>
public string c { get; set; }
/// <summary>
/// File name for current frame
/// </summary>
public string fn { get; set; }
2013-06-05 21:33:16 -07:00
}
}