mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-31 10:29:52 +08:00
24 lines
528 B
C#
24 lines
528 B
C#
namespace MicaSetup.Shell.Dialogs;
|
|
|
|
#pragma warning disable CS8618
|
|
|
|
public class ShellLink : ShellObject
|
|
{
|
|
private string _internalPath;
|
|
|
|
internal ShellLink(IShellItem2 shellItem) => nativeShellItem = shellItem;
|
|
|
|
public virtual string Path
|
|
{
|
|
get
|
|
{
|
|
if (_internalPath == null && NativeShellItem != null)
|
|
{
|
|
_internalPath = base.ParsingName;
|
|
}
|
|
return _internalPath!;
|
|
}
|
|
protected set => _internalPath = value;
|
|
}
|
|
}
|