mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-02-08 12:05:40 +02:00
14 lines
325 B
C#
14 lines
325 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 DateTime Created { get; set; }
|
|
public string Path { get; set; }
|
|
}
|
|
} |