15 lines
241 B
C#
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;
|
|
}
|
|
}
|