// using System; using UnityEngine; namespace DDD { [Serializable] public class ItemData : IId { /// 식별번호 [Tooltip("식별번호")] [field: SerializeField] public string Id { get; set; } /// 아이템타입 [Tooltip("아이템타입")] public ItemType ItemType; } }