1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

New: Manual Import episodes

This commit is contained in:
Mark McDowall
2015-03-03 16:42:37 -08:00
parent 29ca1bc9da
commit 6dd22e7dcb
66 changed files with 1766 additions and 117 deletions
@@ -0,0 +1,14 @@
using System;
namespace NzbDrone.Common.Disk
{
public class RelativeFileSystemModel
{
public string Name { get; set; }
public string Path { get; set; }
public string RelativePath { get; set; }
public string Extension { get; set; }
public long Size { get; set; }
public DateTime? LastModified { get; set; }
}
}