1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Metadata issues with renaming resolved

This commit is contained in:
Mark McDowall
2012-07-14 01:17:37 -07:00
parent f296f38742
commit 1d2cd49bde
5 changed files with 27 additions and 9 deletions
+16
View File
@@ -9,6 +9,22 @@ namespace NzbDrone.Core.Repository
[PrimaryKey("EpisodeFileId", autoIncrement = true)]
public class EpisodeFile
{
public EpisodeFile()
{
}
public EpisodeFile(EpisodeFile source)
{
EpisodeFileId = source.EpisodeFileId;
SeriesId = source.SeriesId;
SeasonNumber = source.SeasonNumber;
Path = source.Path;
Quality = source.Quality;
Proper = source.Proper;
Size = source.Size;
}
public int EpisodeFileId { get; set; }
public int SeriesId { get; set; }