diff --git a/Password Manager/Config.cs b/Password Manager/Config.cs new file mode 100644 index 0000000..b68449e --- /dev/null +++ b/Password Manager/Config.cs @@ -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; + } + } +}