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

25 lines
519 B
C#
Raw Normal View History

2025-07-24 08:45:02 +00:00
// <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;
2025-07-28 11:33:04 +00:00
/// <summary>완성 메뉴</summary>
[Tooltip("완성 메뉴")]
public string RecipeResult;
2025-07-25 07:58:53 +00:00
2025-07-24 08:45:02 +00:00
}
}