mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
Almost everything working except importing episode thumbs
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user