MosswartMassacre/Unused/Decal.Adapter.Wrappers/LogoffEventArgs.cs
2025-06-09 02:03:11 +02:00

15 lines
241 B
C#

using System;
namespace Decal.Adapter.Wrappers;
public class LogoffEventArgs : EventArgs
{
private LogoffEventType myType;
public LogoffEventType Type => myType;
internal LogoffEventArgs(LogoffEventType type)
{
myType = type;
}
}