26 lines
299 B
C#
26 lines
299 B
C#
using System;
|
|
|
|
namespace CPF.Mac.AppKit
|
|
{
|
|
public class NSControlTextErrorEventArgs : EventArgs
|
|
{
|
|
public string Str
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string Error
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public NSControlTextErrorEventArgs(string str, string error)
|
|
{
|
|
Str = str;
|
|
Error = error;
|
|
}
|
|
}
|
|
}
|