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/Password Manager/Profile.cs
Miskolczi Richárd b4a83782e9 Bro i don't even know
2023-03-24 12:18:06 +01:00

21 lines
614 B
C#

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
public Profile(string name, string path, PasswordStoreChange change)
{
Name = name;
Path = path;
Change = change;
}
}
}