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
318 B
C#
9 lines
318 B
C#
namespace Duplicati.WebserverCore.Dto;
|
|
|
|
/// <summary>
|
|
/// Represents the response of the RemoteOperation GetDbPath endpoint.
|
|
/// </summary>
|
|
/// <param name="Exists">Whether the database path exists.</param>
|
|
/// <param name="Path">The database path.</param>
|
|
public sealed record GetDbPathDto(bool Exists, string Path);
|