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