21 lines
416 B
C#
21 lines
416 B
C#
// <auto-generated>
|
|
using System;
|
|
using UnityEngine;
|
|
|
|
namespace DDD
|
|
{
|
|
[Serializable]
|
|
public class CookwareData : IId
|
|
{
|
|
/// <summary>식별ID</summary>
|
|
[Tooltip("식별ID")]
|
|
[field: SerializeField]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>요리도구 타입</summary>
|
|
[Tooltip("요리도구 타입")]
|
|
public CookwareType CookwareType;
|
|
|
|
}
|
|
}
|