using System; namespace ScreenConnect; public interface IFileSystemInfo { string FilePath { get; } DateTime CreationTime { get; } DateTime LastWriteTime { get; } DateTime LastAccessTime { get; } long Size { get; } bool IsDirectory { get; } }