CPF/CPF.Mac/Mac/AppKit/NSOpenSavePanelUrlEventArgs.cs

20 lines
292 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using CPF.Mac.Foundation;
using System;
namespace CPF.Mac.AppKit
{
public class NSOpenSavePanelUrlEventArgs : EventArgs
{
public NSUrl NewDirectoryUrl
{
get;
set;
}
public NSOpenSavePanelUrlEventArgs(NSUrl newDirectoryUrl)
{
NewDirectoryUrl = newDirectoryUrl;
}
}
}