mirror of
https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite.git
synced 2025-12-14 20:39:01 +00:00
19 lines
502 B
C#
19 lines
502 B
C#
namespace winPEAS.Helpers
|
|
{
|
|
internal class CustomFileInfo
|
|
{
|
|
public string Filename { get; }
|
|
public string Extension { get; }
|
|
public string FullPath { get; }
|
|
public bool IsDirectory { get; }
|
|
|
|
public CustomFileInfo(string filename, string extension, string fullPath, bool isDirectory)
|
|
{
|
|
Filename = filename;
|
|
Extension = extension;
|
|
FullPath = fullPath;
|
|
IsDirectory = isDirectory;
|
|
}
|
|
}
|
|
}
|