mirror of
https://gitea.tendokyu.moe/beerpsi/Rizu.git
synced 2024-12-02 19:27:35 +01:00
12 lines
217 B
C#
12 lines
217 B
C#
using System;
|
|
|
|
namespace Rizu.Core.Models;
|
|
|
|
[Serializable]
|
|
public class ImportStatusResponseBody
|
|
{
|
|
public string importStatus;
|
|
public ImportProgress progress;
|
|
public ImportDocument import;
|
|
}
|