mirror of
https://gitea.tendokyu.moe/beerpsi/Rizu.git
synced 2024-12-02 19:27:35 +01:00
11 lines
157 B
C#
11 lines
157 B
C#
using System;
|
|
|
|
namespace Rizu.Core.Models;
|
|
|
|
[Serializable]
|
|
public class ImportProgress
|
|
{
|
|
public string description;
|
|
public int value;
|
|
}
|