using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CMS_Client.Browser_Tools.Models.Metadata { public class Metas { public GenericsParam Generics; public List Tools; public List Customs; public Metas() { Generics = new GenericsParam(); Tools = new List(); Customs = new List(); } } }