Created Config class. Derive Profiles from this in the future
This commit is contained in:
14
Password Manager/Config.cs
Normal file
14
Password Manager/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