25 lines
519 B
C#
25 lines
519 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 RecipeType RecipeType;
|
|
|
|
/// <summary>완성 메뉴</summary>
|
|
[Tooltip("완성 메뉴")]
|
|
public string RecipeResult;
|
|
|
|
}
|
|
}
|