forked from sarbian/ModuleManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgressCounter.cs
More file actions
20 lines (18 loc) · 776 Bytes
/
Copy pathProgressCounter.cs
File metadata and controls
20 lines (18 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using ModuleManager.Utils;
namespace ModuleManager.Progress
{
public class ProgressCounter
{
public readonly Counter totalPatches = new Counter();
public readonly Counter appliedPatches = new Counter();
public readonly Counter patchedNodes = new Counter();
public readonly Counter warnings = new Counter();
public readonly Counter errors = new Counter();
public readonly Counter exceptions = new Counter();
public readonly Counter needsUnsatisfied = new Counter();
public readonly Dictionary<String, int> warningFiles = new Dictionary<string, int>();
public readonly Dictionary<String, int> errorFiles = new Dictionary<string, int>();
}
}