11 lines
235 B
C#
11 lines
235 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
namespace UIInfoBuilder.Data
|
|||
|
|
{
|
|||
|
|
public class UIInfoComponent
|
|||
|
|
{
|
|||
|
|
public string componentName;
|
|||
|
|
public bool enable;
|
|||
|
|
public List<string> properties = new List<string>();
|
|||
|
|
}
|
|||
|
|
}
|