LeviLamina
Loading...
Searching...
No Matches
SigninResponse.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace WebServices::EduSignin {
6
7struct SigninResponse {
8public:
9 // member variables
10 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 SigninResponse& operator=(SigninResponse const&);
23 SigninResponse(SigninResponse const&);
24 SigninResponse();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCNAPI_C void* $ctor(::WebServices::EduSignin::SigninResponse&&);
36
37 MCNAPI_C void* $ctor(::WebServices::EduSignin::SigninResponse const&);
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCNAPI_C void $dtor();
44 // NOLINTEND
45};
46
47} // namespace WebServices::EduSignin
Definition SigninResponse.h:7
Definition Alias.h:14