Files
duplicati/Duplicati/WebserverCore/Dto/CommandLineLogOutputDto.cs
T
Kenneth Skovhede 9f79025744 Removed HttpServer.
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.
2024-06-07 15:56:43 +02:00

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
);