Re-implemented everything using ASP.NET. Changed some requests to use JSON instead of FORM data. Some work towards deleting the FIXMEGlobal instance. Auth is missing, XSRF does not work correctly.
18 lines
588 B
C#
18 lines
588 B
C#
namespace Duplicati.WebserverCore.Dto;
|
|
/// <summary>
|
|
/// The command line log output DTO
|
|
/// </summary>
|
|
/// <param name="Pagesize">The page size</param>
|
|
/// <param name="Offset">The offset</param>
|
|
/// <param name="Count">The count</param>
|
|
/// <param name="Items">The items</param>
|
|
/// <param name="Finished">Whether the command line log is finished</param>
|
|
/// <param name="Started">Whether the command line log is started</param>
|
|
public record CommandLineLogOutputDto(
|
|
int Pagesize,
|
|
int Offset,
|
|
int Count,
|
|
IEnumerable<string> Items,
|
|
bool Finished,
|
|
bool Started
|
|
); |