From b60e9635096a13798e8c51b47b8e04911d06d332 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miskolczi=20Rich=C3=A1rd?= Date: Tue, 28 Mar 2023 10:58:56 +0200 Subject: [PATCH] Created Config class. Derive Profiles from this in the future --- Password Manager/Config.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Password Manager/Config.cs 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; + } + } +}