Prompt user when uploading songs from a directory

This commit is contained in:
kdeng00
2019-11-11 22:54:53 -05:00
parent 9d8122df5c
commit 996b84c25c
2 changed files with 37 additions and 1 deletions
+7
View File
@@ -14,6 +14,13 @@ namespace Syncers
const int OK = 200;
const int UNAUTHORIZED = 401;
const int NOTFOUND = 404;
enum class Result
{
OK = 200,
UNAUTHORIZED = 401,
NOTFOUND = 404
};
};
}