CPF/CPF.Mac/Mac/AppKit/NSControlTextErrorEventArgs.cs

26 lines
299 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
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;
}
}
}