15 lines
286 B
C#
15 lines
286 B
C#
|
|
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|