29 lines
607 B
C#
29 lines
607 B
C#
![]() |
// <auto-generated>
|
||
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace DDD
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class RecipeData : IId
|
||
|
{
|
||
|
/// <summary>식별ID</summary>
|
||
|
[Tooltip("식별ID")]
|
||
|
[field: SerializeField]
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
/// <summary>이름</summary>
|
||
|
[Tooltip("이름")]
|
||
|
public string Name;
|
||
|
|
||
|
/// <summary>레시피타입</summary>
|
||
|
[Tooltip("레시피타입")]
|
||
|
public RecipeType RecipeType;
|
||
|
|
||
|
/// <summary>스트링 ID</summary>
|
||
|
[Tooltip("스트링 ID")]
|
||
|
public string NameKey;
|
||
|
|
||
|
}
|
||
|
}
|