TraceViewItem.cs
14 lines
| 334 B
| text/x-csharp
|
CSharpLexer
/ Implab.Diagnostics.Interactive / TraceViewItem.cs
cin
|
r45 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
using System.Threading.Tasks; | ||||
namespace Implab.Diagnostics.Interactive { | ||||
public struct TraceViewItem { | ||||
public string message; | ||||
public int timestamp; | ||||
public int indent; | ||||
public int thread; | ||||
} | ||||
} | ||||