mirror of
https://gitea.tendokyu.moe/beerpsi/Rizu.git
synced 2025-02-21 17:59:31 +01:00
12 lines
221 B
C#
12 lines
221 B
C#
using System;
|
|
|
|
namespace Rizu.Core.Models;
|
|
|
|
[Serializable]
|
|
public class ImportDocument
|
|
{
|
|
public string[] scoreIDs;
|
|
public ImportErrContent[] errors;
|
|
public SessionInfoReturn[] createdSessions;
|
|
}
|