You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
666 B
21 lines
666 B
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.MediaFiles
|
|
{
|
|
public struct ScriptImportInfo
|
|
{
|
|
public List<string> PossibleExtraFiles { get; set; }
|
|
public string MediaFile { get; set; }
|
|
public ScriptImportDecision Decision { get; set; }
|
|
public bool ImportExtraFiles { get; set; }
|
|
|
|
public ScriptImportInfo(List<string> possibleExtraFiles, string mediaFile, ScriptImportDecision decision, bool importExtraFiles)
|
|
{
|
|
PossibleExtraFiles = possibleExtraFiles;
|
|
MediaFile = mediaFile;
|
|
Decision = decision;
|
|
ImportExtraFiles = importExtraFiles;
|
|
}
|
|
}
|
|
}
|