anshdadhich commited on
Commit
d406157
·
verified ·
1 Parent(s): 1e885b5

Upload FastSeekWpf/Core/NtfsDrive.cs

Browse files
Files changed (1) hide show
  1. FastSeekWpf/Core/NtfsDrive.cs +8 -0
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
+ }