mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-30 10:19:51 +08:00
21 lines
390 B
C#
21 lines
390 B
C#
using System;
|
|
|
|
namespace MicaSetup.Shell.Dialogs;
|
|
|
|
public interface IShellProperty
|
|
{
|
|
string CanonicalName { get; }
|
|
|
|
ShellPropertyDescription Description { get; }
|
|
|
|
IconReference IconReference { get; }
|
|
|
|
PropertyKey PropertyKey { get; }
|
|
|
|
object ValueAsObject { get; }
|
|
|
|
Type ValueType { get; }
|
|
|
|
string FormatForDisplay(PropertyDescriptionFormatOptions format);
|
|
}
|