summaryrefslogtreecommitdiff
path: root/lib/utility/ScopedStorage.cs
blob: 18e1b29fa2da72ab0d5f60fe8d95f2897b7b0edd (plain)
1
2
3
4
5
6
7
8
9
using System.Collections;

namespace jive.utility
{
  public interface ScopedStorage
  {
    IDictionary provide_storage();
  }
}