mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 00:22:14 +11:00
12 lines
No EOL
248 B
C++
12 lines
No EOL
248 B
C++
#pragma once
|
|
#include <string>
|
|
#include <drogon/HttpTypes.h>
|
|
|
|
struct BankResponse
|
|
{
|
|
drogon::HttpStatusCode first = drogon::k200OK;
|
|
std::string second;
|
|
|
|
BankResponse();
|
|
BankResponse(drogon::HttpStatusCode code, std::string &&str);
|
|
}; |