Files
Cleanuparr/code/Data/Models/Deluge/Response/DelugeError.cs
2025-05-27 02:21:34 +03:00

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; }
}