mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-13 15:54:00 +08:00
47 lines
844 B
C#
47 lines
844 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
namespace MicaSetup.Shell.Dialogs;
|
|
|
|
public interface IKnownFolder : IDisposable, IEnumerable<ShellObject>
|
|
{
|
|
string CanonicalName { get; }
|
|
|
|
FolderCategory Category { get; }
|
|
|
|
DefinitionOptions DefinitionOptions { get; }
|
|
|
|
string Description { get; }
|
|
|
|
FileAttributes FileAttributes { get; }
|
|
|
|
Guid FolderId { get; }
|
|
|
|
string FolderType { get; }
|
|
|
|
Guid FolderTypeId { get; }
|
|
|
|
string LocalizedName { get; }
|
|
|
|
string LocalizedNameResourceId { get; }
|
|
|
|
Guid ParentId { get; }
|
|
|
|
string ParsingName { get; }
|
|
|
|
string Path { get; }
|
|
|
|
bool PathExists { get; }
|
|
|
|
RedirectionCapability Redirection { get; }
|
|
|
|
string RelativePath { get; }
|
|
|
|
string Security { get; }
|
|
|
|
string Tooltip { get; }
|
|
|
|
string TooltipResourceId { get; }
|
|
}
|