mirror of
https://gitea.tendokyu.moe/beerpsi/Rizu.git
synced 2024-12-02 19:27:35 +01:00
17 lines
386 B
C#
17 lines
386 B
C#
using System;
|
|
|
|
namespace Rizu.Core.Models;
|
|
|
|
[Serializable]
|
|
public class BatchManualScore
|
|
{
|
|
public float percent;
|
|
public string lamp;
|
|
public string matchType = "songTitle";
|
|
public string identifier;
|
|
public string difficulty;
|
|
public long timeAchieved;
|
|
public BatchManualScoreJudgements judgements;
|
|
public BatchManualOptional optional;
|
|
}
|