Upload FastSeekWpf/Core/NtfsDrive.cs
Browse files
FastSeekWpf/Core/NtfsDrive.cs
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
namespace FastSeekWpf.Core;
|
| 2 |
+
|
| 3 |
+
public class NtfsDrive
|
| 4 |
+
{
|
| 5 |
+
public char Letter { get; set; }
|
| 6 |
+
public string Root { get; set; } = string.Empty;
|
| 7 |
+
public string DevicePath => $"\\\\.\\{Letter}:";
|
| 8 |
+
}
|