using System; namespace ScreenConnect; public class VirtualFileInfo { public Guid StreamID { get; set; } public Utf8String FilePath { get; set; } public DateTime CreationTime { get; set; } public DateTime LastWriteTime { get; set; } public DateTime LastAccessTime { get; set; } public long Size { get; set; } public bool IsDirectory { get; set; } }