LeviLamina
Loading...
Searching...
No Matches
UploadType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace EduCloudUtils {
6
7enum class UploadType : int {
8 None = 0,
9 Stub = 1,
10 Simple = 2,
11 Resumable = 3,
12};
13
14}