using System.Collections.Generic; using UnityEngine; using System; using Newtonsoft.Json; namespace DataTools { [Serializable] public class CustomizeSubCategory : DataObject { [JsonProperty] [SerializeField] private List items; [JsonIgnore] public List Items { get { return items; } set { items = value; } } } }