mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-05-22 16:26:31 +03:00
make classes and interfaces in KeyKeeper.PasswordStore public
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
namespace KeyKeeper.PasswordStore;
|
||||
|
||||
interface IPassStore
|
||||
public interface IPassStore
|
||||
{
|
||||
IPassStoreDirectory GetRootDirectory();
|
||||
int GetTotalEntryCount();
|
||||
|
||||
@@ -2,6 +2,6 @@ using System.Collections.Generic;
|
||||
|
||||
namespace KeyKeeper.PasswordStore;
|
||||
|
||||
interface IPassStoreDirectory : IEnumerable<IPassStoreEntry>
|
||||
public interface IPassStoreDirectory : IEnumerable<IPassStoreEntry>
|
||||
{
|
||||
}
|
||||
@@ -2,7 +2,7 @@ using System;
|
||||
|
||||
namespace KeyKeeper.PasswordStore;
|
||||
|
||||
interface IPassStoreEntry
|
||||
public interface IPassStoreEntry
|
||||
{
|
||||
string Name { get; set; }
|
||||
PassStoreEntryType Type { get; set; }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
namespace KeyKeeper.PasswordStore;
|
||||
|
||||
enum PassStoreEntryType
|
||||
public enum PassStoreEntryType
|
||||
{
|
||||
Password,
|
||||
Directory,
|
||||
|
||||
Reference in New Issue
Block a user