LeviLamina
Loading...
Searching...
No Matches
EduRole.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace WebServices::EduSignin {
6
7enum class EduRole : uchar {
8 Student = 0,
9 Teacher = 1,
10 Demo = 2,
11 Unknown = 3,
12};
13
14}