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