CustomizeSubCategory.cs 524 B

1234567891011121314151617181920212223242526272829
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. using System;
  4. using Newtonsoft.Json;
  5. namespace DataTools
  6. {
  7. [Serializable]
  8. public class CustomizeSubCategory : DataObject
  9. {
  10. [JsonProperty]
  11. [SerializeField]
  12. private List<CustomizeItem> items;
  13. [JsonIgnore]
  14. public List<CustomizeItem> Items
  15. {
  16. get
  17. {
  18. return items;
  19. }
  20. set
  21. {
  22. items = value;
  23. }
  24. }
  25. }
  26. }