Files
icarus_dm/include/Models/UploadForm.h
T
2022-01-08 21:09:40 -05:00

19 lines
166 B
C++

#ifndef UPLOADFORM_H_
#define UPLOADFORM_H_
#include<string>
namespace Models
{
struct UploadForm
{
std::string url;
std::string filePath;
};
}
#endif