Files
cms_thermo_active/Client/Browser_Tools/Models/Metadata/Metas.cs
T
2018-09-21 11:21:45 +02:00

23 lines
517 B
C#

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<int> tools;
public List<CustomParam> customs;
public Metas()
{
generics = new GenericsParam();
tools = new List<int>();
customs = new List<CustomParam>();
}
}
}