I don't even know anymore

This commit is contained in:
Miskolczi Richárd
2023-03-24 12:01:08 +01:00
parent 911b3fc819
commit 91c6f339ba
10 changed files with 116 additions and 28 deletions

View File

@@ -8,6 +8,14 @@ namespace Password_Manager
{
public string Name { get; } //the name of the password store profile ("personal", "work", or similar)
public string Path { get; } //path of the folder containing the password store
private Password[] Passwords;
public event PasswordStoreChange Change; //runs if a new password is added, or if one is removed
public Profile(string name, string path, PasswordStoreChange change)
{
Name = name;
Path = path;
Change = change;
}
}
}