##// END OF EJS Templates
minor refactoring
minor refactoring

File last commit:

r92:4c0e5ef99986 v2
r116:da56ba7b1aab v2
Show More
LogEventArgs.cs
24 lines | 585 B | text/x-csharp | CSharpLexer
using System;
namespace Implab.Diagnostics {
public class LogEventArgs : EventArgs {
public int ThreadId {
get;
private set;
}
public LogicalOperation Operation {
get;
private set;
}
public int OperationTimeOffset {
get;
private set;
}
public LogEventArgs(int threadId, LogicalOperation operation, int timeOffset) {
ThreadId = threadId;
Operation = operation;
OperationTimeOffset = timeOffset;
}
}
}