LeviLamina
Loading...
Searching...
No Matches
Enum.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Identity::_TokenRefreshState {
6
7enum class Enum : int {
8 NoAction = 0,
9 Refresh = 1,
10 Failed = 2,
11};
12
13}