Lidarr/src/NzbDrone.Core/Notifications/Telegram/TelegramError.cs

15 lines
303 B
C#

using Newtonsoft.Json;
namespace NzbDrone.Core.Notifications.Telegram
{
public class TelegramError
{
public bool Ok { get; set; }
[JsonProperty(PropertyName = "error_code")]
public int ErrorCode { get; set; }
public string Description { get; set; }
}
}