2024-05-21 20:29:18 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2024-08-06 17:26:31 +00:00
|
|
|
|
#if BEPINEX // When we're building for BepInEx, the dummy JsonInclude is *not* defined, so let's cover that base.
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-05-23 09:13:19 +00:00
|
|
|
|
namespace Rizu.Core.Models;
|
2024-05-21 20:29:18 +00:00
|
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class ImportProgress
|
|
|
|
|
{
|
2024-08-06 17:26:31 +00:00
|
|
|
|
[JsonInclude]
|
2024-05-21 20:29:18 +00:00
|
|
|
|
public string description;
|
2024-08-06 17:26:31 +00:00
|
|
|
|
[JsonInclude]
|
2024-05-21 20:29:18 +00:00
|
|
|
|
public int value;
|
|
|
|
|
}
|