Files
TaiWan/Assets/ZX/ZX4/Scripts/FoodData.cs
2025-10-31 15:20:38 +08:00

23 lines
424 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
[Serializable]
public class FoodData
{
public string id;
public string name;
public List<FoodStepData> steps;
public string description;
public string tip;
}
[Serializable]
public class FoodStepData
{
/// <summary>
/// 步骤类型1食材2烹饪方式3中间结果
/// </summary>
public string type;
public string name;
}