LeviLamina
Loading...
Searching...
No Matches
ImportStatus.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Legacy {
6
7enum class ImportStatus : int {
8 NotStarted = 0,
9 InProgress = 1,
10 Done = 2,
11 Failed = 3,
12};
13
14}