ProjectDDD/Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Classes/ItemData.cs

21 lines
404 B
C#
Raw Normal View History

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