mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-07-14 15:11:58 -05:00
15 lines
227 B
C++
15 lines
227 B
C++
#pragma once
|
|
#include "fslib.hpp"
|
|
#include "sys/sys.hpp"
|
|
|
|
namespace curl
|
|
{
|
|
// clang-format off
|
|
struct UploadStruct
|
|
{
|
|
fslib::File *source{};
|
|
sys::ProgressTask *task{};
|
|
};
|
|
// clang-format on
|
|
}
|