10 lines
268 B
C#
10 lines
268 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Paps.UnityToolbarExtenderUIToolkit
|
|||
|
{
|
|||
|
internal class SerializableElementGroup
|
|||
|
{
|
|||
|
public Dictionary<string, SerializableElement> SerializableElements = new Dictionary<string, SerializableElement>();
|
|||
|
}
|
|||
|
}
|