main
1using System.Collections;
2
3namespace momoney.database.transactions
4{
5 public interface IScopedStorage
6 {
7 IDictionary provide_storage();
8 }
9}