選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

13 行
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. }