19 lines
228 B
C#
19 lines
228 B
C#
using System;
|
|
|
|
namespace CPF.Mac.AppKit
|
|
{
|
|
public class NSTabViewItemEventArgs : EventArgs
|
|
{
|
|
public NSTabViewItem Item
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public NSTabViewItemEventArgs(NSTabViewItem item)
|
|
{
|
|
Item = item;
|
|
}
|
|
}
|
|
}
|