mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 01:37:07 +00:00
0b586de226
A bunch of files changed removing System.Linq, thanks Resharper :(
14 lines
No EOL
325 B
C#
14 lines
No EOL
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; }
|
|
}
|
|
} |