Created Config class. Derive Profiles from this in the future

This commit is contained in:
2023-03-28 10:58:56 +02:00
parent 037ca44b2b
commit b60e963509

View 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;
}
}
}