kamihama-server/KamihamaWeb/Models/ScenarioGeneral.cs

17 lines
361 B
C#

using System.Collections;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace KamihamaWeb.Models
{
public class ScenarioGeneral
{
[JsonProperty("story")]
public Dictionary<string, dynamic> story { get; set; }
[JsonProperty("version")]
public int version { get; set; }
}
}