1using System; 2using System.Collections.Generic; 3 4namespace jive 5{ 6 public interface Assembly 7 { 8 IEnumerable<Type> all_types(); 9 } 10}