mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-06 08:46:34 +00:00
17 lines
347 B
C#
17 lines
347 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.MediaFiles
|
|
{
|
|
public class EpisodeFileMoveResult
|
|
{
|
|
public EpisodeFileMoveResult()
|
|
{
|
|
OldFiles = new List<EpisodeFile>();
|
|
}
|
|
|
|
public String Path { get; set; }
|
|
public List<EpisodeFile> OldFiles { get; set; }
|
|
}
|
|
}
|