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.
9 lines
272 B
C#
9 lines
272 B
C#
namespace Duplicati.WebserverCore.Dto;
|
|
|
|
/// <summary>
|
|
/// The create backup DTO
|
|
/// </summary>
|
|
/// <param name="ID">The backup ID</param>
|
|
/// <param name="Temporary">Whether the backup is temporary</param>
|
|
public sealed record CreateBackupDto(string? ID, bool Temporary);
|