using System.Collections.Generic; namespace Client2020.BrowserTools.Metadata { public class Metas { public GenericsParam generics; public List tools; public List customs; public Metas() { generics = new GenericsParam(); tools = new List(); customs = new List(); } } }