123456789101112131415161718192021222324252627282930 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using System;
- using Newtonsoft.Json;
- using Newtonsoft;
- namespace DataTools
- {
- [Serializable]
- public class CustomizeCategory : DataObject
- {
- [JsonProperty]
- [SerializeField]
- private List<CustomizeSubCategory> subcategory;
- [JsonIgnore]
- public List<CustomizeSubCategory> SubCategory
- {
- get
- {
- return subcategory;
- }
- set
- {
- subcategory = value;
- }
- }
- }
- }
|