// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace SystemTrayMenu.UserInterface.FolderBrowseDialog { using System; using System.Windows.Interop; public class WindowWrapper : IWin32Window { /// /// Initializes a new instance of the class. /// /// Handle to wrap. public WindowWrapper(IntPtr handle) { Handle = handle; } /// /// Gets original ptr. /// public IntPtr Handle { get; } } }