This repository has been archived on 2025-09-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Password-Manager-Legacy/Common/Config.cs

14 lines
264 B
C#
Raw Normal View History

2023-04-02 22:10:42 +02:00
namespace Common;
class Config
{
2023-04-02 22:10:42 +02:00
public string PasswordStorePath { get; set; }
public string Recipient { get; set; }
2023-04-02 22:10:42 +02:00
public Config(string PasswordStorePath, string Recipient)
{
this.PasswordStorePath = PasswordStorePath;
this.Recipient = Recipient;
}
}