2024-05-21 22:29:18 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
2024-08-06 19:26:31 +02:00
|
|
|
|
#if BEPINEX // When we're building for BepInEx, the dummy JsonInclude is *not* defined, so let's cover that base.
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-05-23 11:13:19 +02:00
|
|
|
|
namespace Rizu.Core.Models;
|
2024-05-21 22:29:18 +02:00
|
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class BatchManualMeta
|
|
|
|
|
{
|
2024-08-06 19:26:31 +02:00
|
|
|
|
[JsonInclude]
|
2024-05-21 22:29:18 +02:00
|
|
|
|
public string game = "maimaidx";
|
2024-08-06 19:26:31 +02:00
|
|
|
|
[JsonInclude]
|
2024-05-21 22:29:18 +02:00
|
|
|
|
public string playtype = "Single";
|
2024-08-06 19:26:31 +02:00
|
|
|
|
[JsonInclude]
|
2024-05-21 22:29:18 +02:00
|
|
|
|
public string service = "Rizu";
|
|
|
|
|
}
|