20 lines
306 B
C#
20 lines
306 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
public class StatusMessageEventArgs : EventArgs
|
|
{
|
|
private int myType;
|
|
|
|
private string myText;
|
|
|
|
public int Type => myType;
|
|
|
|
public string Text => myText;
|
|
|
|
internal StatusMessageEventArgs(int Type, string Text)
|
|
{
|
|
myType = Type;
|
|
myText = Text;
|
|
}
|
|
}
|