using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library.Animations
{
///
/// Represents a group that stores animation tracks and sub groups.
///
public class STAnimGroup
{
public string Name { get; set; }
public List SubAnimGroups = new List();
}
}