Renamed project to GUI
This commit is contained in:
14
GUI/Config.cs
Normal file
14
GUI/Config.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Password_Manager
|
||||
{
|
||||
class Config
|
||||
{
|
||||
public string PasswordStorePath { get; set; }
|
||||
public string Recipient { get; set; }
|
||||
|
||||
public Config(string PasswordStorePath, string Recipient)
|
||||
{
|
||||
this.PasswordStorePath = PasswordStorePath;
|
||||
this.Recipient = Recipient;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user