23 lines
521 B
C#
23 lines
521 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 Generic_Params Generics;
|
|
public List<int> Tools;
|
|
public List<Custom_Param> Customs;
|
|
|
|
public Metas()
|
|
{
|
|
Generics = new Generic_Params();
|
|
Tools = new List<int>();
|
|
Customs = new List<Custom_Param>();
|
|
}
|
|
}
|
|
}
|