1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-06 08:07:20 +02:00
Radarr/NzbDrone.Web/Models/PendingProcessingModel.cs
Mark McDowall d6e4c5fc53 System/PendingProcessing grid converted to Datatables.
Misnamed Controller and Views removed.
2012-02-09 23:11:56 -08:00

16 lines
411 B
C#

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