2024-05-22 03:29:18 +07:00
|
|
|
|
using System;
|
|
|
|
|
|
2024-05-23 16:13:19 +07:00
|
|
|
|
namespace Rizu.Core.Models;
|
2024-05-22 03:29:18 +07:00
|
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class ImportDocument
|
|
|
|
|
{
|
|
|
|
|
public string[] scoreIDs;
|
|
|
|
|
public ImportErrContent[] errors;
|
|
|
|
|
public SessionInfoReturn[] createdSessions;
|
|
|
|
|
}
|