mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 20:57:22 +02:00
15 lines
446 B
Plaintext
15 lines
446 B
Plaintext
|
|
namespace PowerRenameUILib
|
||
|
|
{
|
||
|
|
runtimeclass ExplorerItem : Windows.UI.Xaml.Data.INotifyPropertyChanged
|
||
|
|
{
|
||
|
|
ExplorerItem(Int32 id, String original, String renamed, Int32 type, Boolean checked);
|
||
|
|
Int32 Id { get; };
|
||
|
|
String IdStr { get; };
|
||
|
|
String Original;
|
||
|
|
String Renamed;
|
||
|
|
Int32 Type;
|
||
|
|
Boolean Checked;
|
||
|
|
Windows.Foundation.Collections.IObservableVector<ExplorerItem> Children;
|
||
|
|
}
|
||
|
|
}
|