forked from VerifyTests/DiffEngine
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrackedMove.cs
32 lines (31 loc) · 847 Bytes
/
TrackedMove.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
class TrackedMove
{
public TrackedMove(string temp,
string target,
string? exe,
string? arguments,
bool canKill,
Process? process,
string? group,
string extension)
{
Temp = temp;
Target = target;
Exe = exe;
Arguments = arguments;
Name = Path.GetFileNameWithoutExtension(Path.GetFileNameWithoutExtension(target));
Extension = extension;
CanKill = canKill;
Process = process;
Group = group;
}
public string Extension { get; }
public string Name { get; }
public string Temp { get; }
public string Target { get; }
public string? Exe { get; }
public string? Arguments { get; }
public bool CanKill { get; }
public Process? Process { get; set; }
public string? Group { get; }
}