21 lines
404 B
C#
21 lines
404 B
C#
// <auto-generated>
|
|
using System;
|
|
using UnityEngine;
|
|
|
|
namespace DDD
|
|
{
|
|
[Serializable]
|
|
public class ItemData : IId
|
|
{
|
|
/// <summary>식별번호</summary>
|
|
[Tooltip("식별번호")]
|
|
[field: SerializeField]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>아이템타입</summary>
|
|
[Tooltip("아이템타입")]
|
|
public ItemType ItemType;
|
|
|
|
}
|
|
}
|