CASA/c_micasad/cache/IKeychain.cs

16 lines
302 B
C#
Raw Normal View History

using System;
using System.Collections;
namespace sscs.cache
{
interface IKeychain
{
void AddSecret(Secret mySecret);
void RemoveSecret(String secretID);
Secret GetSecret(string secretID);
// IEnumerator getAllSecrets();
}
}