mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
14 lines
254 B
C#
14 lines
254 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace GrasscutterTools.Game.CutScene
|
|
{
|
|
internal class CutSceneItem
|
|
{
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonProperty("path")]
|
|
public string Path { get; set; }
|
|
}
|
|
}
|