19 lines
434 B
C#
19 lines
434 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Active_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>();
|
|
}
|
|
}
|
|
}
|