first commit
This commit is contained in:
13
include/TessesFramework/Http/ContentDisposition.hpp
Normal file
13
include/TessesFramework/Http/ContentDisposition.hpp
Normal file
@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
#include "../Common.hpp"
|
||||
namespace Tesses::Framework::Http
|
||||
{
|
||||
class ContentDisposition {
|
||||
public:
|
||||
std::string filename;
|
||||
std::string type;
|
||||
std::string fieldName;
|
||||
static bool TryParse(std::string str, ContentDisposition& cd);
|
||||
std::string ToString();
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user