summaryrefslogtreecommitdiff
path: root/lib/utility/Registry.cs
blob: 62aef0af54b50ad29375e4a7909b44e4105a9a8b (plain)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

namespace jive.utility
{
  public interface Registry<out T> : IEnumerable<T>
  {
    IEnumerable<T> all();
  }
}