2025-07-08 10:46:31 +00:00
|
|
|
// <auto-generated>
|
|
|
|
using System;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
{
|
|
|
|
[Serializable]
|
2025-07-15 04:01:35 +00:00
|
|
|
public class ItemData : IId
|
2025-07-08 10:46:31 +00:00
|
|
|
{
|
|
|
|
/// <summary>식별번호</summary>
|
|
|
|
[Tooltip("식별번호")]
|
2025-07-15 04:01:35 +00:00
|
|
|
[field: SerializeField]
|
|
|
|
public string Id { get; set; }
|
2025-07-08 10:46:31 +00:00
|
|
|
|
|
|
|
/// <summary>아이템타입</summary>
|
|
|
|
[Tooltip("아이템타입")]
|
|
|
|
public ItemType ItemType;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|