LeviLamina
Loading...
Searching...
No Matches
Operation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace EduCloudProxy {
6
7enum class Operation : int {
8 User = 0,
9 List = 1,
10 Get = 2,
11 Set = 3,
12 Del = 4,
13};
14
15}