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 web module output DTO
|
|
/// </summary>
|
|
/// <param name="Status">The status</param>
|
|
/// <param name="Result">The result</param>
|
|
public record WebModuleOutputDto(string Status, IDictionary<string, string> Result);
|