Almost everything working except importing episode thumbs

This commit is contained in:
Mark McDowall
2014-01-24 08:17:56 -08:00
parent a6361d0bbd
commit 3ca5e478ff
24 changed files with 509 additions and 174 deletions
@@ -0,0 +1,16 @@
using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Metadata.Files
{
public class MetadataFile : ModelBase
{
public Int32 SeriesId { get; set; }
public String Consumer { get; set; }
public MetadataType Type { get; set; }
public String RelativePath { get; set; }
public DateTime LastUpdated { get; set; }
public Int32? EpisodeFileId { get; set; }
public Int32? SeasonNumber { get; set; }
}
}