mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-08 23:19:14 +08:00
22 lines
479 B
C#
22 lines
479 B
C#
using System.Collections.Generic;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace GrasscutterTools.Game.Drop
|
|
{
|
|
internal class DropInfo
|
|
{
|
|
/// <summary>
|
|
/// 怪物ID
|
|
/// </summary>
|
|
[JsonProperty("monsterId")]
|
|
public int MonsterId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 掉落列表
|
|
/// </summary>
|
|
[JsonProperty("dropDataList")]
|
|
public List<DropData> DropDataList { get; set; } = new List<DropData>();
|
|
}
|
|
}
|