16 lines
302 B
C#
16 lines
302 B
C#
using System;
|
|
using System.Collections;
|
|
namespace sscs.cache
|
|
{
|
|
|
|
interface IKeychain
|
|
{
|
|
|
|
void AddSecret(Secret mySecret);
|
|
void RemoveSecret(String secretID);
|
|
Secret GetSecret(string secretID);
|
|
// IEnumerator getAllSecrets();
|
|
}
|
|
|
|
}
|