24 lines
665 B
C#
24 lines
665 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenSaveCloudCore.Models.Remote
|
|
{
|
|
public class HttpError
|
|
{
|
|
[JsonPropertyName("status")]
|
|
public int Status { get; set; }
|
|
[JsonPropertyName("timestamp")]
|
|
public string Timestamp { get; set; }
|
|
[JsonPropertyName("error")]
|
|
public string Error { get; set; }
|
|
[JsonPropertyName("message")]
|
|
public string Message { get; set; }
|
|
[JsonPropertyName("path")]
|
|
public string Path { get; set; }
|
|
}
|
|
}
|