Moved the SessionChangedEventArgs to its own class file. Embeded classes are generally not a good idea

This commit is contained in:
David Sparer
2016-09-20 10:23:03 -06:00
parent 0907a19821
commit fb315fd782
3 changed files with 10 additions and 3 deletions

View File

@@ -50,9 +50,6 @@ namespace mRemoteNG.Config.Putty
#endregion
#region Public Classes
public class SessionChangedEventArgs : EventArgs
{
}
#endregion
#region Protected Methods

View File

@@ -0,0 +1,9 @@
using System;
namespace mRemoteNG.Config.Putty
{
public class SessionChangedEventArgs : EventArgs
{
}
}

View File

@@ -149,6 +149,7 @@
<Compile Include="Config\Connections\SqlUpdateQueryBuilder.cs" />
<Compile Include="Config\Connections\SqlUpdateTimer.cs" />
<Compile Include="Config\Connections\XmlConnectionsDeserializer.cs" />
<Compile Include="Config\Putty\SessionChangedEventArgs.cs" />
<Compile Include="Config\Settings\ExternalAppsLoader.cs" />
<Compile Include="Config\Settings\LayoutSettingsLoader.cs" />
<Compile Include="Config\Settings\Providers\AppSettingsProvider.cs" />