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 Generic_Params Generics; public List Tools; public List Customs; public Metas() { Generics = new Generic_Params(); Tools = new List(); Customs = new List(); } } }