namespace Duplicati.WebserverCore.Dto;
///
/// The command line log output DTO
///
/// The page size
/// The offset
/// The count
/// The items
/// Whether the command line log is finished
/// Whether the command line log is started
public record CommandLineLogOutputDto(
int Pagesize,
int Offset,
int Count,
IEnumerable Items,
bool Finished,
bool Started
);