You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
696 B
30 lines
696 B
12 years ago
|
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; }
|
||
|
}
|
||
|
}
|