Moved common stuff to Common project

This commit is contained in:
2023-04-02 21:58:33 +02:00
parent dd10e5740e
commit f1206233a7
6 changed files with 0 additions and 0 deletions

14
Common/Config.cs Normal file
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;
}
}
}