9653abacda
Fixed queue
23 lines
517 B
C#
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>();
|
|
}
|
|
}
|
|
}
|