Files
mRemoteNG/mRemoteV1/Security/Security.Save.cs
Sparer, David a937d5c4f7 runtime fixes
2016-03-09 15:44:41 -07:00

70 lines
835 B
C#

namespace mRemoteNG.Security
{
public class Save
{
public Save(bool DisableEverything = false)
{
if (DisableEverything == false)
{
_Username = true;
_Password = true;
_Domain = true;
_Inheritance = true;
}
}
private bool _Username;
public bool Username
{
get
{
return _Username;
}
set
{
_Username = value;
}
}
private bool _Password;
public bool Password
{
get
{
return _Password;
}
set
{
_Password = value;
}
}
private bool _Domain;
public bool Domain
{
get
{
return _Domain;
}
set
{
_Domain = value;
}
}
private bool _Inheritance;
public bool Inheritance
{
get
{
return _Inheritance;
}
set
{
_Inheritance = value;
}
}
}
}