mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 19:40:25 +08:00
13 lines
No EOL
486 B
C#
13 lines
No EOL
486 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Duplicati.Library.Backend.Box;
|
|
|
|
public class ErrorResponse
|
|
{
|
|
[JsonProperty("type")] public string? Type { get; set; }
|
|
[JsonProperty("status")] public int Status { get; set; }
|
|
[JsonProperty("code")] public string? Code { get; set; }
|
|
[JsonProperty("help_url")] public string? HelpUrl { get; set; }
|
|
[JsonProperty("message")] public string? Message { get; set; }
|
|
[JsonProperty("request_id")] public string? RequestId { get; set; }
|
|
} |