##// END OF EJS Templates
refactoring, code cleanup
refactoring, code cleanup

File last commit:

r94:a43745f81f10 v2
r158:130781364799 v2
Show More
TraceEventType.cs
19 lines | 383 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.Diagnostics {
public enum TraceEventType {
Information = 1,
Warning,
Error,
OperationStarted,
OperationCompleted,
Attach,
Detach,
Enter,
Leave
}
}