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