main
1namespace gorilla.commons.utility
2{
3    public interface Builder<T>
4    {
5        T build();
6    }
7}