Adding Profile and ProfileList class

This commit is contained in:
Miskolczi Richárd
2023-03-24 11:14:49 +01:00
parent ef93530830
commit 911b3fc819
7 changed files with 109 additions and 30 deletions

View File

@@ -0,0 +1,13 @@
using System;
namespace Password_Manager
{
public delegate void PasswordStoreChange();
sealed class Profile
{
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
}
}