2024-05-22 03:29:18 +07:00
|
|
|
|
using System;
|
|
|
|
|
|
2024-08-06 17:26:31 +00: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 16:13:19 +07:00
|
|
|
|
namespace Rizu.Core.Models;
|
2024-05-22 03:29:18 +07:00
|
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class BatchManual
|
|
|
|
|
{
|
2024-08-06 17:26:31 +00:00
|
|
|
|
[JsonInclude]
|
2024-05-22 03:29:18 +07:00
|
|
|
|
public BatchManualMeta meta = new();
|
2024-08-06 17:26:31 +00:00
|
|
|
|
[JsonInclude]
|
|
|
|
|
public BatchManualScore[] scores;
|
|
|
|
|
[JsonInclude]
|
2024-05-22 03:29:18 +07:00
|
|
|
|
public BatchManualMatchingClass classes;
|
|
|
|
|
}
|