using System.Collections.Generic; using UnityEngine; using UnityEngine.Serialization; namespace SMPLModel { public class Models : ScriptableObject { [FormerlySerializedAs("ModelParameters")] [SerializeField] public List ModelDefinitions = new List(); } }