Radarr/src/NzbDrone.Core/Download/Clients/DownloadStation/Responses/DSMInfoResponse.cs

11 lines
222 B
C#

using Newtonsoft.Json;
namespace NzbDrone.Core.Download.Clients.DownloadStation.Responses
{
public class DSMInfoResponse
{
[JsonProperty("serial")]
public string SerialNumber { get; set; }
}
}