mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-20 02:29:48 +08:00
20 lines
242 B
C#
20 lines
242 B
C#
using CPF.Mac.Foundation;
|
|
using System;
|
|
|
|
namespace CPF.Mac.AppKit
|
|
{
|
|
public class NSCoderEventArgs : EventArgs
|
|
{
|
|
public NSCoder Encoder
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public NSCoderEventArgs(NSCoder encoder)
|
|
{
|
|
Encoder = encoder;
|
|
}
|
|
}
|
|
}
|