mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-22 01:34:13 -05:00
18 lines
342 B
C++
18 lines
342 B
C++
#pragma once
|
|
#include "fslib.hpp"
|
|
#include "sys/sys.hpp"
|
|
|
|
namespace curl
|
|
{
|
|
// clang-format off
|
|
struct UploadStruct
|
|
{
|
|
/// @brief Source file to upload from.
|
|
fslib::File *source{};
|
|
|
|
/// @brief Optional. Task to update with progress.
|
|
sys::ProgressTask *task{};
|
|
};
|
|
// clang-format on
|
|
}
|