tesses-framework/include/TessesFramework/Http/ContentDisposition.hpp

13 lines
322 B
C++
Raw Normal View History

2024-12-06 10:58:55 +00:00
#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();
};
}