CCash/include/endpoints.hpp
2021-06-09 16:12:33 -07:00

12 lines
No EOL
229 B
C++

#pragma once
enum Endpoint
{
UserNotFound = -1,
WrongPassword = -2,
Refunded = -3,
InvalidRequest = -4,
WrongAdminPassword = -5,
NameTooLong = -6,
UserAlreadyExists = -7,
InsufficientFunds = -8,
};