CPF/CPF.Mac/Mac/AppKit/NSControlTextErrorEventArgs.cs
2023-11-21 23:05:03 +08:00

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;
}
}
}