1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-27 18:30:45 +00:00
Radarr/NzbDrone.Web/Models/PendingProcessingModel.cs

14 lines
325 B
C#
Raw Normal View History

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 DateTime Created { get; set; }
public string Path { get; set; }
}
}