23 lines
424 B
C#
23 lines
424 B
C#
|
|
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;
|
|||
|
|
}
|