mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-04-19 19:16:28 +03:00
make classes and interfaces in KeyKeeper.PasswordStore public
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
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,9 +2,9 @@ using System;
|
||||
|
||||
namespace KeyKeeper.PasswordStore;
|
||||
|
||||
interface IPassStoreEntry
|
||||
public interface IPassStoreEntry
|
||||
{
|
||||
string Name { get; set; }
|
||||
PassStoreEntryType Type { get; set; }
|
||||
DateTime CreationDate { get; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
namespace KeyKeeper.PasswordStore;
|
||||
|
||||
enum PassStoreEntryType
|
||||
public enum PassStoreEntryType
|
||||
{
|
||||
Password,
|
||||
Directory,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user