mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-06-10 14:55:34 -04:00
12 lines
265 B
C#
12 lines
265 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Data.Models.Deluge.Response;
|
|
|
|
public sealed record DelugeError
|
|
{
|
|
[JsonProperty(PropertyName = "message")]
|
|
public String Message { get; set; }
|
|
|
|
[JsonProperty(PropertyName = "code")]
|
|
public int Code { get; set; }
|
|
} |