main
1using System.Collections.Generic;
2
3namespace gorilla.commons.utility
4{
5 public interface Registry<T> : IEnumerable<T>
6 {
7 IEnumerable<T> all();
8 }
9}