mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
16 lines
350 B
C#
16 lines
350 B
C#
using System;
|
|
using mRemoteNG.Connection;
|
|
|
|
|
|
namespace mRemoteNG.Config.Putty
|
|
{
|
|
public class PuttySessionChangedEventArgs : EventArgs
|
|
{
|
|
public PuttySessionInfo Session { get; set; }
|
|
|
|
public PuttySessionChangedEventArgs(PuttySessionInfo sessionChanged = null)
|
|
{
|
|
Session = sessionChanged;
|
|
}
|
|
}
|
|
} |