bro check it out

This commit is contained in:
Miskolczi Richárd
2023-03-24 12:39:50 +01:00
parent b4a83782e9
commit bb7625d2f8
6 changed files with 36 additions and 19 deletions

View File

@@ -8,13 +8,13 @@ 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
public event PasswordStoreChange Change; //runs if a new password is added, or if one is removed
//public event PasswordStoreChange Change; //runs if a new password is added, or if one is removed
public Profile(string name, string path, PasswordStoreChange change)
public Profile(string name, string path)
{
Name = name;
Path = path;
Change = change;
//Change = change;
}
}
}