2024-05-21 22:29:18 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
2024-05-23 11:13:19 +02:00
|
|
|
|
namespace Rizu.Core.Models;
|
2024-05-21 22:29:18 +02:00
|
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class ImportStatusResponseBody
|
|
|
|
|
{
|
|
|
|
|
public string importStatus;
|
|
|
|
|
public ImportProgress progress;
|
|
|
|
|
public ImportDocument import;
|
|
|
|
|
}
|