You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/NzbDrone.Web/Models/PendingProcessingModel.cs

16 lines
411 B

using System;
using System.Collections.Generic;
using System.Web;
namespace NzbDrone.Web.Models
{
public class PendingProcessingModel
{
public string Name { get; set; }
public string Files { get; set; }
public string Created { get; set; }
public string Path { get; set; }
public string Actions { get; set; }
public string Details { get; set; }
}
}