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