mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 17:27:59 +00:00
d6e4c5fc53
Misnamed Controller and Views removed.
16 lines
No EOL
411 B
C#
16 lines
No EOL
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; }
|
|
}
|
|
} |