Skip to content

Instantly share code, notes, and snippets.

View yairsz's full-sized avatar

Yair Szarf yairsz

View GitHub Profile
@mrozema
mrozema / IPersistentStorage.cs
Last active October 21, 2018 12:51
PersistentStorage Xamarin implementation
using System.Collections.Generic;
namespace PersistentStorage
{
public interface IPersistentStorage
{
IEnumerable<string> Groups { get; }
IEnumerable<string> KeysForGroup(string group);
bool ContainsKey(string group, string key);