using System; using DDD.Interfaces; using Newtonsoft.Json; using Sirenix.OdinInspector; using UnityEngine; namespace DDD { [Serializable] public class CardNormalData : IIdx { [BoxGroup("Json 데이터 영역")] [JsonProperty] [field: SerializeField, Tooltip("Idx"), BoxGroup("Json 데이터 영역")] public string Idx { get; set; } [JsonProperty] [field: SerializeField, Tooltip("확률"), BoxGroup("Json 데이터 영역")] public int Ratio { get; set; } } }