using System; using System.Collections.Generic; namespace SUISS.Storage { public interface IStorable { void FromStorage(IDictionary<string, object> dict); IDictionary<string, object> ToStorage(); } }