mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-05 23:33:53 +01:00
16 lines
340 B
C#
16 lines
340 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace NzbDrone.Core.Model.Sabnzbd
|
|
{
|
|
public class SabHistory
|
|
{
|
|
public bool Paused { get; set; }
|
|
|
|
[JsonProperty(PropertyName = "slots")]
|
|
public List<SabHistoryItem> Items { get; set; }
|
|
}
|
|
}
|