Files
PowerToys/src/modules/powerrename/PowerRenameUILib/ExplorerItem.idl

18 lines
531 B
Plaintext
Raw Normal View History

namespace PowerRenameUI
{
runtimeclass ExplorerItem : Microsoft.UI.Xaml.Data.INotifyPropertyChanged
{
ExplorerItem();
ExplorerItem(Int32 id, String original, String renamed, Int32 type, UInt32 depth, Boolean checked);
Int32 Id { get; };
String IdStr { get; };
String Original;
String Renamed;
Double Indentation { get; };
String ImagePath { get; };
Int32 Type;
Boolean Checked;
Microsoft.UI.Xaml.Visibility Highlight { get; };
}
}