mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-04 18:38:14 +00:00
15 lines
No EOL
344 B
C#
15 lines
No EOL
344 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
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; }
|
|
}
|
|
} |