Files
mRemoteNG/mRemoteNG/App/Info/CredentialsFileInfo.cs
2020-06-02 09:11:01 +02:00

10 lines
391 B
C#

namespace mRemoteNG.App.Info
{
public class CredentialsFileInfo
{
public static readonly string CredentialsPath = SettingsFileInfo.SettingsPath;
public static readonly string CredentialsFile = "confCreds.xml";
public static readonly string CredentialsFileNew = "confCredsNew.xml";
public static readonly double CredentialsFileVersion = 1.0;
}
}