17 lines
525 B
C#
17 lines
525 B
C#
namespace Profiles
|
|
{
|
|
public 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)
|
|
{
|
|
Name = name;
|
|
Path = path;
|
|
//Change = change;
|
|
}
|
|
}
|
|
}
|