You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 regels
221 B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace SUISS.Storage
  4. {
  5. public interface IStorable
  6. {
  7. void FromStorage(IDictionary<string, object> dict);
  8. IDictionary<string, object> ToStorage();
  9. }
  10. }