Added functionality to check if the song already exists when uploading

This commit is contained in:
kdeng00
2019-11-13 20:22:29 -05:00
parent 3b0f199dca
commit ca1fcb801d
5 changed files with 56 additions and 27 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef SONGUPLOAD_H_
#define SONGUPLOAD_H_
namespace type
{
enum class SongUpload
{
Successful = 0,
AlreadyExist = 1,
Failed = 2
};
}
#endif